SortedSets

redis.commands.SortedSets
trait SortedSets extends Request

Attributes

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

Members list

Concise view

Value members

Concrete methods

def zadd[V : ByteStringSerializer](key: String, scoreMembers: (Double, V)*): Future[Long]

Attributes

Source:
SortedSets.scala
def zaddWithOptions[V : ByteStringSerializer](key: String, options: Seq[ZaddOption], scoreMembers: (Double, V)*): Future[Long]

Attributes

Source:
SortedSets.scala
def zcard(key: String): Future[Long]

Attributes

Source:
SortedSets.scala
def zcount(key: String, min: Limit, max: Limit): Future[Long]

Attributes

Source:
SortedSets.scala
def zincrby[V : ByteStringSerializer](key: String, increment: Double, member: V): Future[Double]

Attributes

Source:
SortedSets.scala
def zinterstore(destination: String, key: String, keys: Seq[String], aggregate: Aggregate): Future[Long]

Attributes

Source:
SortedSets.scala
def zinterstoreWeighted(destination: String, keys: Map[String, Double], aggregate: Aggregate): Future[Long]

Attributes

Source:
SortedSets.scala
def zpopmax[R : ByteStringDeserializer](key: String, count: Long): Future[Seq[R]]

Attributes

Source:
SortedSets.scala
def zpopmin[R : ByteStringDeserializer](key: String, count: Long): Future[Seq[R]]

Attributes

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

Attributes

Source:
SortedSets.scala
def zrangeWithscores[R : ByteStringDeserializer](key: String, start: Long, stop: Long): Future[Seq[(R, Double)]]

Attributes

Source:
SortedSets.scala

Attributes

Source:
SortedSets.scala
def zrangebyscore[R : ByteStringDeserializer](key: String, min: Limit, max: Limit, limit: Option[(Long, Long)]): Future[Seq[R]]

Attributes

Source:
SortedSets.scala

Attributes

Source:
SortedSets.scala
def zrank[V : ByteStringSerializer](key: String, member: V): Future[Option[Long]]

Attributes

Source:
SortedSets.scala
def zrem[V : ByteStringSerializer](key: String, members: V*): Future[Long]

Attributes

Source:
SortedSets.scala
def zremrangebylex(key: String, min: String, max: String): Future[Long]

Attributes

Source:
SortedSets.scala
def zremrangebyrank(key: String, start: Long, stop: Long): Future[Long]

Attributes

Source:
SortedSets.scala
def zremrangebyscore(key: String, min: Limit, max: Limit): Future[Long]

Attributes

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

Attributes

Source:
SortedSets.scala

Attributes

Source:
SortedSets.scala

Attributes

Source:
SortedSets.scala
def zrevrangebyscore[R : ByteStringDeserializer](key: String, min: Limit, max: Limit, limit: Option[(Long, Long)]): Future[Seq[R]]

Attributes

Source:
SortedSets.scala

Attributes

Source:
SortedSets.scala
def zrevrank[V : ByteStringSerializer](key: String, member: V): Future[Option[Long]]

Attributes

Source:
SortedSets.scala
def zscan[R : ByteStringDeserializer](key: String, cursor: Int, count: Option[Int], matchGlob: Option[String]): Future[Cursor[Seq[(Double, R)]]]

Attributes

Source:
SortedSets.scala
def zscore[V : ByteStringSerializer](key: String, member: V): Future[Option[Double]]

Attributes

Source:
SortedSets.scala
def zunionstore(destination: String, key: String, keys: Seq[String], aggregate: Aggregate): Future[Long]

Attributes

Source:
SortedSets.scala
def zunionstoreWeighted(destination: String, keys: Map[String, Double], aggregate: Aggregate): Future[Long]

Attributes

Source:
SortedSets.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