Sets

trait Sets extends Request
Source:
Sets.scala
trait Request
class Object
trait Matchable
class Any

Value members

Concrete methods

def sadd[V : ByteStringSerializer](key: String, members: V*): Future[Long]
Source:
Sets.scala
def scard(key: String): Future[Long]
Source:
Sets.scala
def sdiff[R : ByteStringDeserializer](key: String, keys: String*): Future[Seq[R]]
Source:
Sets.scala
def sdiffstore(destination: String, key: String, keys: String*): Future[Long]
Source:
Sets.scala
def sinter[R : ByteStringDeserializer](key: String, keys: String*): Future[Seq[R]]
Source:
Sets.scala
def sinterstore(destination: String, key: String, keys: String*): Future[Long]
Source:
Sets.scala
def sismember[V : ByteStringSerializer](key: String, member: V): Future[Boolean]
Source:
Sets.scala
def smove[V : ByteStringSerializer](source: String, destination: String, member: V): Future[Boolean]
Source:
Sets.scala
def srem[V : ByteStringSerializer](key: String, members: V*): Future[Long]
Source:
Sets.scala
def sscan[R : ByteStringDeserializer](key: String, cursor: Int, count: Option[Int], matchGlob: Option[String]): Future[Cursor[Seq[R]]]
Source:
Sets.scala
def sunion[R : ByteStringDeserializer](key: String, keys: String*): Future[Seq[R]]
Source:
Sets.scala
def sunionstore(destination: String, key: String, keys: String*): Future[Long]
Source:
Sets.scala

Inherited methods

def send[T](redisCommand: RedisCommand[_ <: RedisReply, T]): Future[T]
Inherited from:
Request
Source:
Request.scala

Implicits

Inherited implicits

Inherited from:
Request
Source:
Request.scala