redis.api.sets
package redis.api.sets
Members list
Concise view
Type members
Classlikes
case class Sadd[K, V](key: K, members: Seq[V])(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends SimpleClusterKey[K] with RedisCommandIntegerLong
Attributes
- Source:
- Sets.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandIntegerLongtrait RedisCommandInteger[Long]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Scard[K](key: K)(implicit redisKey: ByteStringSerializer[K]) extends SimpleClusterKey[K] with RedisCommandIntegerLong
Attributes
- Source:
- Sets.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandIntegerLongtrait RedisCommandInteger[Long]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Sdiff[K, KK, R](key: K, keys: Seq[KK])(implicit redisKey: ByteStringSerializer[K], redisKeys: ByteStringSerializer[KK], deserializerR: ByteStringDeserializer[R]) extends RedisCommandMultiBulkSeqByteString[R]
Attributes
- Source:
- Sets.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandMultiBulkSeqByteString[R]class Objecttrait Matchableclass Any
case class Sdiffstore[KD, K, KK](destination: KD, key: K, keys: Seq[KK])(implicit redisDest: ByteStringSerializer[KD], redisKey: ByteStringSerializer[K], redisKeys: ByteStringSerializer[KK]) extends RedisCommandIntegerLong
Attributes
- Source:
- Sets.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandIntegerLongtrait RedisCommandInteger[Long]class Objecttrait Matchableclass Any
case class Sinter[K, KK, R](key: K, keys: Seq[KK])(implicit redisKey: ByteStringSerializer[K], redisKeys: ByteStringSerializer[KK], deserializerR: ByteStringDeserializer[R]) extends RedisCommandMultiBulkSeqByteString[R]
Attributes
- Source:
- Sets.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandMultiBulkSeqByteString[R]class Objecttrait Matchableclass Any
case class Sinterstore[KD, K, KK](destination: KD, key: K, keys: Seq[KK])(implicit redisDest: ByteStringSerializer[KD], redisKey: ByteStringSerializer[K], redisKeys: ByteStringSerializer[KK]) extends RedisCommandIntegerLong
Attributes
- Source:
- Sets.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandIntegerLongtrait RedisCommandInteger[Long]class Objecttrait Matchableclass Any
case class Sismember[K, V](key: K, member: V)(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends SimpleClusterKey[K] with RedisCommandIntegerBoolean
Attributes
- Source:
- Sets.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandInteger[Boolean]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Smembers[K, R](key: K)(implicit redisKey: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends SimpleClusterKey[K] with RedisCommandMultiBulkSeqByteString[R]
Attributes
- Source:
- Sets.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandMultiBulkSeqByteString[R]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Smove[KS, KD, V](source: KS, destination: KD, member: V)(implicit redisSource: ByteStringSerializer[KS], redisDest: ByteStringSerializer[KD], convert: ByteStringSerializer[V]) extends RedisCommandIntegerBoolean
Attributes
- Source:
- Sets.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandInteger[Boolean]class Objecttrait Matchableclass Any
case class Spop[K, R](key: K)(implicit redisKey: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends SimpleClusterKey[K] with RedisCommandBulkOptionByteString[R]
Attributes
- Source:
- Sets.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandBulkOptionByteString[R]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Srandmember[K, R](key: K)(implicit redisKey: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends SimpleClusterKey[K] with RedisCommandBulkOptionByteString[R]
Attributes
- Source:
- Sets.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandBulkOptionByteString[R]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Srandmembers[K, R](key: K, count: Long)(implicit redisKey: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends SimpleClusterKey[K] with RedisCommandMultiBulkSeqByteString[R]
Attributes
- Source:
- Sets.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandMultiBulkSeqByteString[R]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Srem[K, V](key: K, members: Seq[V])(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends SimpleClusterKey[K] with RedisCommandIntegerLong
Attributes
- Source:
- Sets.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandIntegerLongtrait RedisCommandInteger[Long]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Sscan[K, C, R](key: K, cursor: C, count: Option[Int], matchGlob: Option[String])(implicit redisKey: ByteStringSerializer[K], redisCursor: ByteStringSerializer[C], deserializerR: ByteStringDeserializer[R]) extends SimpleClusterKey[K] with RedisCommandMultiBulkCursor[Seq[R]]
Attributes
- Source:
- Sets.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalsclass SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Sunion[K, KK, R](key: K, keys: Seq[KK])(implicit redisKey: ByteStringSerializer[K], redisKeys: ByteStringSerializer[KK], deserializerR: ByteStringDeserializer[R]) extends RedisCommandMultiBulkSeqByteString[R]
Attributes
- Source:
- Sets.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandMultiBulkSeqByteString[R]class Objecttrait Matchableclass Any
case class Sunionstore[KD, K, KK](destination: KD, key: K, keys: Seq[KK])(implicit redisDest: ByteStringSerializer[KD], redisKey: ByteStringSerializer[K], redisKeys: ByteStringSerializer[KK]) extends RedisCommandIntegerLong
Attributes
- Source:
- Sets.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandIntegerLongtrait RedisCommandInteger[Long]class Objecttrait Matchableclass Any