RedisMapRef

io.chrisdavenport.rediculous.concurrent.RedisMapRef
See theRedisMapRef companion object
class RedisMapRef[F[_]](redisConnection: RedisConnection[F], acquireTimeout: FiniteDuration, lockTimeout: FiniteDuration, setOpts: SetOpts)(implicit evidence$1: Async[F]) extends MapRef[F, String, Option[String]]

Attributes

Companion
object
Source
RedisMapRef.scala
Graph
Supertypes
trait MapRef[F, String, Option[String]]
trait String => Ref[F, Option[String]]
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

def apply(k: String): Ref[F, Option[String]]

Access the reference for this Key

Access the reference for this Key

Attributes

Source
RedisMapRef.scala

Attributes

Source
RedisMapRef.scala
def modifyKeyValueIfSet[B](k: String, f: String => (String, B)): F[Option[B]]

Attributes

Source
RedisMapRef.scala
def setKeyValue(k: String, v: String): F[Unit]

Attributes

Source
RedisMapRef.scala
def unsetKey(k: String): F[Unit]

Attributes

Source
RedisMapRef.scala

Attributes

Source
RedisMapRef.scala

Inherited methods

def andThen[A](g: (Ref[F, Option[String]]) => A): String => A

Attributes

Inherited from:
Function1
def compose[A](g: A => String): A => Ref[F, Option[String]]

Attributes

Inherited from:
Function1
override def toString(): String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Function1 -> Any
Inherited from:
Function1