package redis
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
-
class
RedisCache[F[_], V] extends RedisCacheBase[F, V]
Thin wrapper around Jedis
-
trait
RedisCacheBase[F[_], V] extends AbstractCache[F, V]
Contains implementations of all methods that can be implemented independent of the type of Redis client.
Contains implementations of all methods that can be implemented independent of the type of Redis client. This is everything apart from
removeAll
, which needs to be implemented differently for sharded Redis. - class RedisClusterCache[F[_], V] extends AbstractCache[F, V]
-
trait
RedisSerialization extends AnyRef
Custom serialization for caching arbitrary objects in Redis.
Custom serialization for caching arbitrary objects in Redis. Ints, Longs, Doubles, Strings and byte arrays are treated specially. Everything else is serialized using standard Java serialization.
-
class
SentinelRedisCache[F[_], V] extends RedisCacheBase[F, V]
Thin wrapper around Jedis that works with Redis Sentinel.
-
class
ShardedRedisCache[F[_], V] extends RedisCacheBase[F, V]
Thin wrapper around Jedis that works with sharded Redis.
Value Members
- object RedisCache
- object SentinelRedisCache
- object ShardedRedisCache
- object StringEnrichment