-
CacheKeyPrefix
is a callback hook for creating custom prefixes prepended to the actual key
stored in Redis.
The statistics collector supports capturing of relevant
RedisCache
operations such as
hits & misses.
Interface to be implemented by objects that expose
CacheStatistics
identified by
cacheName
.
Cache
implementation using Redis as the underlying store for cache data.
Immutable
RedisCacheConfiguration
used to customize
RedisCache
behavior, such as caching
null values, computing cache key prefixes and handling binary serialization.
RedisCacheWriter
provides low-level access to Redis commands (
SET, SETNX, GET, EXPIRE,...
)
used for caching.
Function to compute the time to live from the cache key
and value
.