Packages

package redis

Type Members

  1. trait AsyncCacheApi extends cache.AsyncCacheApi

    Cache API inspired by basic Play play.api.cache.CacheApi.

    Cache API inspired by basic Play play.api.cache.CacheApi. It implements all its operations and in addition it declares couple more useful operations handful with cache storage.

    Since

    2.5.0

  2. trait AsyncRedisList[Elem] extends AnyRef

    Redis Lists are simply lists of strings, sorted by insertion order.

    Redis Lists are simply lists of strings, sorted by insertion order. It is possible to add elements to a Redis List pushing new elements on the head (on the left) or on the tail (on the right) of the list.

    Elem

    Data type of the inserted element

    Since

    2.5.0

  3. trait AsyncRedisMap[Elem] extends AnyRef

    Redis Hashes are simply hash maps with strings as keys.

    Redis Hashes are simply hash maps with strings as keys. It is possible to add elements to a Redis Hashes by adding new elements into the collection.

    This simplified wrapper implements only unordered Maps.

    Elem

    Data type of the inserted element

    Since

    2.5.0

  4. trait AsyncRedisSet[Elem] extends AnyRef

    Redis Sets are simply unsorted sets of objects.

    Redis Sets are simply unsorted sets of objects. It is possible to add elements to a Redis Set by adding new elements into the collection.

    This simplified wrapper implements only unordered Sets.

    Since

    2.5.0

  5. class KeyValue extends AnyRef

    Java-equivalent of Scala-tuple

Ungrouped