package
sets
Type Members
-
case class
Sadd[A](key: String, members: Seq[A])(implicit convert: RedisValueConverter[A]) extends RedisCommandIntegerLong with Product with Serializable
-
case class
Scard(key: String) extends RedisCommandIntegerLong with Product with Serializable
-
case class
Sdiff(key: String, keys: Seq[String]) extends RedisCommandMultiBulkSeqByteString with Product with Serializable
-
case class
Sdiffstore(destination: String, key: String, keys: Seq[String]) extends RedisCommandIntegerLong with Product with Serializable
-
case class
Sinter(key: String, keys: Seq[String]) extends RedisCommandMultiBulkSeqByteString with Product with Serializable
-
case class
Sinterstore(destination: String, key: String, keys: Seq[String]) extends RedisCommandIntegerLong with Product with Serializable
-
-
-
case class
Smove[A](source: String, destination: String, member: A)(implicit convert: RedisValueConverter[A]) extends RedisCommandIntegerBoolean with Product with Serializable
-
-
-
-
case class
Srem[A](key: String, members: Seq[A])(implicit convert: RedisValueConverter[A]) extends RedisCommandIntegerLong with Product with Serializable
-
case class
Sunion(key: String, keys: Seq[String]) extends RedisCommandMultiBulkSeqByteString with Product with Serializable
-
case class
Sunionstore(destination: String, key: String, keys: Seq[String]) extends RedisCommandIntegerLong with Product with Serializable