package impl
- Alphabetic
- Public
- Protected
Type Members
- sealed trait InvocationPolicy extends AnyRef
Invocation policy implements whether to wait for the operation result or not.
Invocation policy implements whether to wait for the operation result or not. This applies only in the limited number of operations. The best examples are
getOrElseandgetOrFuture. First, both methods invokeget, then, if missed, computeorElseclause. Finally, there is the invocation ofset, however, in some scenarios, there is not required to wait for the result ofsetoperation. The value can be returned earlier. This is the difference betweenEager(not waiting) andLazy(waiting) invocation policies. - trait RedisCaches extends AnyRef
Aggregates all available redis APIs into a single handler.
Aggregates all available redis APIs into a single handler. This simplifies binding, construction, and accessing all APIs.
- class RedisListJavaImpl[Elem] extends AsyncRedisList[Elem]
- class RedisMapJavaImpl[Elem] extends AsyncRedisMap[Elem]
- sealed trait RedisPrefix extends Any
Each instance can apply its own prefix, e.g., to use multiple instances with the same redis database.
- final class RedisPrefixImpl extends AnyVal with RedisPrefix
- class RedisSetJavaImpl[Elem] extends AsyncRedisSet[Elem]
Value Members
- object Builders
Transforms future result produced by redis implementation to the result of the desired type
- object EagerInvocation extends InvocationPolicy
- object LazyInvocation extends InvocationPolicy
- object RedisEmptyPrefix extends RedisPrefix