Sets

redis.commands.Sets
trait Sets extends Request

Attributes

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

Members list

Concise view

Value members

Concrete methods

def sadd[V : ByteStringSerializer](key: String, members: V*): Future[Long]

Attributes

Source:
Sets.scala
def scard(key: String): Future[Long]

Attributes

Source:
Sets.scala
def sdiff[R : ByteStringDeserializer](key: String, keys: String*): Future[Seq[R]]

Attributes

Source:
Sets.scala
def sdiffstore(destination: String, key: String, keys: String*): Future[Long]

Attributes

Source:
Sets.scala
def sinter[R : ByteStringDeserializer](key: String, keys: String*): Future[Seq[R]]

Attributes

Source:
Sets.scala
def sinterstore(destination: String, key: String, keys: String*): Future[Long]

Attributes

Source:
Sets.scala
def sismember[V : ByteStringSerializer](key: String, member: V): Future[Boolean]

Attributes

Source:
Sets.scala

Attributes

Source:
Sets.scala
def smove[V : ByteStringSerializer](source: String, destination: String, member: V): Future[Boolean]

Attributes

Source:
Sets.scala

Attributes

Source:
Sets.scala

Attributes

Source:
Sets.scala

Attributes

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

Attributes

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

Attributes

Source:
Sets.scala
def sunion[R : ByteStringDeserializer](key: String, keys: String*): Future[Seq[R]]

Attributes

Source:
Sets.scala
def sunionstore(destination: String, key: String, keys: String*): Future[Long]

Attributes

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