Lists

redis.commands.Lists
trait Lists extends Request

Attributes

Source:
Lists.scala
Graph
Supertypes
trait Request
class Object
trait Matchable
class Any
Known subtypes

Members list

Concise view

Value members

Concrete methods

Attributes

Source:
Lists.scala
def linsert[V : ByteStringSerializer](key: String, beforeAfter: ListPivot, pivot: String, value: V): Future[Long]

Attributes

Source:
Lists.scala
def linsertAfter[V : ByteStringSerializer](key: String, pivot: String, value: V): Future[Long]

Attributes

Source:
Lists.scala
def linsertBefore[V : ByteStringSerializer](key: String, pivot: String, value: V): Future[Long]

Attributes

Source:
Lists.scala
def llen(key: String): Future[Long]

Attributes

Source:
Lists.scala

Attributes

Source:
Lists.scala
def lpush[V : ByteStringSerializer](key: String, values: V*): Future[Long]

Attributes

Source:
Lists.scala
def lpushx[V : ByteStringSerializer](key: String, values: V*): Future[Long]

Attributes

Source:
Lists.scala
def lrange[R : ByteStringDeserializer](key: String, start: Long, stop: Long): Future[Seq[R]]

Attributes

Source:
Lists.scala
def lrem[V : ByteStringSerializer](key: String, count: Long, value: V): Future[Long]

Attributes

Source:
Lists.scala
def lset[V : ByteStringSerializer](key: String, index: Long, value: V): Future[Boolean]

Attributes

Source:
Lists.scala
def ltrim(key: String, start: Long, stop: Long): Future[Boolean]

Attributes

Source:
Lists.scala

Attributes

Source:
Lists.scala
def rpoplpush[R : ByteStringDeserializer](source: String, destination: String): Future[Option[R]]

Attributes

Source:
Lists.scala
def rpush[V : ByteStringSerializer](key: String, values: V*): Future[Long]

Attributes

Source:
Lists.scala
def rpushx[V : ByteStringSerializer](key: String, values: V*): Future[Long]

Attributes

Source:
Lists.scala

Inherited methods

def send[T](redisCommand: RedisCommand[_ <: RedisReply, T]): Future[T]

Attributes

Inherited from:
Request
Source:
Request.scala

Implicits

Inherited implicits

Attributes

Inherited from:
Request
Source:
Request.scala