package
lists
Type Members
-
-
case class
Linsert[A](key: String, beforeAfter: ListPivot, pivot: String, value: A)(implicit convert: RedisValueConverter[A]) extends RedisCommandIntegerLong with Product with Serializable
-
case class
Llen(key: String) extends RedisCommandIntegerLong with Product with Serializable
-
-
case class
Lpush[A](key: String, values: Seq[A])(implicit convert: RedisValueConverter[A]) extends RedisCommandIntegerLong with Product with Serializable
-
case class
Lpushx[A](key: String, value: A)(implicit convert: RedisValueConverter[A]) extends RedisCommandIntegerLong with Product with Serializable
-
case class
Lrange(key: String, start: Long, stop: Long) extends RedisCommandMultiBulk[Seq[ByteString]] with Product with Serializable
-
case class
Lrem[A](key: String, count: Long, value: A)(implicit convert: RedisValueConverter[A]) extends RedisCommandIntegerLong with Product with Serializable
-
case class
Lset[A](key: String, index: Long, value: A)(implicit convert: RedisValueConverter[A]) extends RedisCommandStatusBoolean with Product with Serializable
-
case class
Ltrim(key: String, start: Long, stop: Long) extends RedisCommandStatusBoolean with Product with Serializable
-
-
case class
Rpoplpush(source: String, destination: String) extends RedisCommandBulkOptionByteString with Product with Serializable
-
case class
Rpush[A](key: String, values: Seq[A])(implicit convert: RedisValueConverter[A]) extends RedisCommandIntegerLong with Product with Serializable
-
case class
Rpushx[A](key: String, value: A)(implicit convert: RedisValueConverter[A]) extends RedisCommandIntegerLong with Product with Serializable