Package

scalacache

redis

Permalink

package redis

Visibility
  1. Public
  2. All

Type Members

  1. class RedisCache[V] extends RedisCacheBase[V]

    Permalink

    Thin wrapper around Jedis

  2. trait RedisCacheBase[V] extends AbstractCache[V]

    Permalink

    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.

  3. trait RedisSerialization extends AnyRef

    Permalink

    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.

  4. class SentinelRedisCache[V] extends RedisCacheBase[V]

    Permalink

    Thin wrapper around Jedis that works with Redis Sentinel.

  5. class ShardedRedisCache[V] extends RedisCacheBase[V]

    Permalink

    Thin wrapper around Jedis that works with sharded Redis.

Ungrouped