class RedisCache[V] extends RedisCacheBase[V]
Thin wrapper around Jedis
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- RedisCache
- RedisCacheBase
- AbstractCache
- LoggingSupport
- Cache
- CacheAlg
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new RedisCache(jedisPool: JedisPool)(implicit config: CacheConfig, codec: Codec[V])
Type Members
-
type
JClient = Jedis
- Definition Classes
- RedisCache → RedisCacheBase
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
final
def
caching[F[_]](keyParts: Any*)(ttl: Option[Duration])(f: ⇒ V)(implicit mode: Mode[F], flags: Flags): F[V]
- Definition Classes
- AbstractCache → CacheAlg
-
def
cachingF[F[_]](keyParts: Any*)(ttl: Option[Duration])(f: ⇒ F[V])(implicit mode: Mode[F], flags: Flags): F[V]
- Definition Classes
- AbstractCache → CacheAlg
-
def
cachingForMemoize[F[_]](baseKey: String)(ttl: Option[Duration])(f: ⇒ V)(implicit mode: Mode[F], flags: Flags): F[V]
- Definition Classes
- AbstractCache → Cache
-
def
cachingForMemoizeF[F[_]](baseKey: String)(ttl: Option[Duration])(f: ⇒ F[V])(implicit mode: Mode[F], flags: Flags): F[V]
- Definition Classes
- AbstractCache → Cache
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
close[F[_]]()(implicit mode: Mode[F]): F[Any]
- Definition Classes
- RedisCacheBase → CacheAlg
-
implicit
val
codec: Codec[V]
- Definition Classes
- RedisCache → RedisCacheBase
-
implicit
val
config: CacheConfig
- Definition Classes
- RedisCache → RedisCacheBase → Cache
-
def
doGet[F[_]](key: String)(implicit mode: Mode[F]): F[Option[V]]
- Attributes
- protected
- Definition Classes
- RedisCacheBase → AbstractCache
-
def
doPut[F[_]](key: String, value: V, ttl: Option[Duration])(implicit mode: Mode[F]): F[Any]
- Attributes
- protected
- Definition Classes
- RedisCacheBase → AbstractCache
-
def
doRemove[F[_]](key: String)(implicit mode: Mode[F]): F[Any]
- Attributes
- protected
- Definition Classes
- RedisCacheBase → AbstractCache
-
def
doRemoveAll[F[_]]()(implicit mode: Mode[F]): F[Any]
- Attributes
- protected
- Definition Classes
- RedisCache → AbstractCache
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
get[F[_]](keyParts: Any*)(implicit mode: Mode[F], flags: Flags): F[Option[V]]
- Definition Classes
- AbstractCache → CacheAlg
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
val
jedisPool: JedisPool
- Definition Classes
- RedisCache → RedisCacheBase
-
def
logCacheHitOrMiss[A](key: String, result: Option[A]): Unit
- Attributes
- protected
- Definition Classes
- LoggingSupport
-
def
logCachePut(key: String, ttl: Option[Duration]): Unit
- Attributes
- protected
- Definition Classes
- LoggingSupport
-
final
val
logger: Logger
- Attributes
- protected
- Definition Classes
- RedisCacheBase → LoggingSupport
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
put[F[_]](keyParts: Any*)(value: V, ttl: Option[Duration])(implicit mode: Mode[F], flags: Flags): F[Any]
- Definition Classes
- AbstractCache → CacheAlg
-
final
def
remove[F[_]](keyParts: Any*)(implicit mode: Mode[F]): F[Any]
- Definition Classes
- AbstractCache → CacheAlg
-
final
def
removeAll[F[_]]()(implicit mode: Mode[F]): F[Any]
- Definition Classes
- AbstractCache → CacheAlg
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
withJedisCommands[T](f: (BinaryJedisCommands) ⇒ T): T
Borrow a Jedis client from the pool, perform some operation and then return the client to the pool.
Borrow a Jedis client from the pool, perform some operation and then return the client to the pool.
- T
return type of the block
- f
block that uses the Jedis client
- returns
the result of executing the block
- Attributes
- protected
- Definition Classes
- RedisCacheBase