redis.api

lists

package lists

Visibility
  1. Public
  2. All

Type Members

  1. case class Lindex(key: String, index: Long) extends RedisCommandBulkOptionByteString with Product with Serializable

  2. case class Linsert[A](key: String, beforeAfter: ListPivot, pivot: String, value: A)(implicit convert: RedisValueConverter[A]) extends RedisCommandIntegerLong with Product with Serializable

  3. case class Llen(key: String) extends RedisCommandIntegerLong with Product with Serializable

  4. case class Lpop(key: String) extends RedisCommandBulkOptionByteString with Product with Serializable

  5. case class Lpush[A](key: String, values: Seq[A])(implicit convert: RedisValueConverter[A]) extends RedisCommandIntegerLong with Product with Serializable

  6. case class Lpushx[A](key: String, value: A)(implicit convert: RedisValueConverter[A]) extends RedisCommandIntegerLong with Product with Serializable

  7. case class Lrange(key: String, start: Long, stop: Long) extends RedisCommandMultiBulk[Seq[ByteString]] with Product with Serializable

  8. case class Lrem[A](key: String, count: Long, value: A)(implicit convert: RedisValueConverter[A]) extends RedisCommandIntegerLong with Product with Serializable

  9. case class Lset[A](key: String, index: Long, value: A)(implicit convert: RedisValueConverter[A]) extends RedisCommandStatusBoolean with Product with Serializable

  10. case class Ltrim(key: String, start: Long, stop: Long) extends RedisCommandStatusBoolean with Product with Serializable

  11. case class Rpop(key: String) extends RedisCommandBulkOptionByteString with Product with Serializable

  12. case class Rpoplpush(source: String, destination: String) extends RedisCommandBulkOptionByteString with Product with Serializable

  13. case class Rpush[A](key: String, values: Seq[A])(implicit convert: RedisValueConverter[A]) extends RedisCommandIntegerLong with Product with Serializable

  14. case class Rpushx[A](key: String, value: A)(implicit convert: RedisValueConverter[A]) extends RedisCommandIntegerLong with Product with Serializable

Ungrouped