Caching
Реалізація кешування в ORM
Architecture and Features
Caching in the ORM system is implemented using the "Factory" pattern, which provides the creation of specific cache implementations depending on the type. Currently, caching with Redis is supported, and additional caching mechanisms, such as Memcached, are planned for future integration.
Main Components:
CacheFactory: This is a factory class responsible for creating specific cache instances. It takes a cache type (
CacheType
) and corresponding settings (CacheOptions
). Depending on the cache type, it creates and initializes the appropriate adapter, such as Redis.RedisAdapter: An adapter for Redis that implements the
CacheInterface
. It provides basic cache operations: setting (set
), retrieving (get
), and deleting (delete
) cached data. Initialization of the Redis client occurs through theinit
method, which connects to the Redis server and configures the client.cache Method in QueryBuilder: This method is used for caching query results. It takes TTL (time-to-live) and cache key parameters. If data is already in the cache, it is returned without querying the database. Otherwise, the database query is executed, results are cached, and then returned.
Implementation Details:
CacheFactory: This class determines which specific cache to use and creates the corresponding object. For example, for Redis, the
RedisAdapter
class is used, which initializes and connects to the Redis server.RedisAdapter: A class that handles interactions with Redis through a Redis client. It provides essential methods for cache management:
set(key: string, value: unknown, ttl?: number):
stores a value in the cache with the specified key and optional time-to-live.get(key: string):
retrieves a value from the cache by key.delete(key: string):
removes a value from the cache by key.
QueryBuilder: The
cache
method inQueryBuilder
integrates caching directly into the query execution process. It allows for reusing query results by storing them in the cache. This significantly improves performance, especially for frequently used queries.
Architecturally, caching is implemented flexibly and scalably, allowing for easy addition of new cache types and adaptation of the system to specific needs. Integrating caching with QueryBuilder
greatly simplifies working with frequently used data, providing fast access and enhancing database performance.
Main Files Implementing Caching Logic:
https://github.com/MyroslavShymon/ORM/tree/main/src/orm/context/cache
And also the cache
method in QueryBuilder:
Last updated