Package

redis.api

sets

Permalink

package sets

Visibility
  1. Public
  2. All

Type Members

  1. case class Sadd[K, V](key: K, members: Seq[V])(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends RedisCommandIntegerLong with Product with Serializable

    Permalink
  2. case class Scard[K](key: K)(implicit redisKey: ByteStringSerializer[K]) extends RedisCommandIntegerLong with Product with Serializable

    Permalink
  3. case class Sdiff[K, KK, R](key: K, keys: Seq[KK])(implicit redisKey: ByteStringSerializer[K], redisKeys: ByteStringSerializer[KK], deserializerR: ByteStringDeserializer[R]) extends RedisCommandMultiBulkSeqByteString[R] with Product with Serializable

    Permalink
  4. 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 with Product with Serializable

    Permalink
  5. case class Sinter[K, KK, R](key: K, keys: Seq[KK])(implicit redisKey: ByteStringSerializer[K], redisKeys: ByteStringSerializer[KK], deserializerR: ByteStringDeserializer[R]) extends RedisCommandMultiBulkSeqByteString[R] with Product with Serializable

    Permalink
  6. 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 with Product with Serializable

    Permalink
  7. case class Sismember[K, V](key: K, member: V)(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends RedisCommandIntegerBoolean with Product with Serializable

    Permalink
  8. case class Smembers[K, R](key: K)(implicit redisKey: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends RedisCommandMultiBulkSeqByteString[R] with Product with Serializable

    Permalink
  9. case class Smove[KS, KD, V](source: KS, destination: KD, member: V)(implicit redisSource: ByteStringSerializer[KS], redisDest: ByteStringSerializer[KD], convert: ByteStringSerializer[V]) extends RedisCommandIntegerBoolean with Product with Serializable

    Permalink
  10. case class Spop[K, R](key: K)(implicit redisKey: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends RedisCommandBulkOptionByteString[R] with Product with Serializable

    Permalink
  11. case class Srandmember[K, R](key: K)(implicit redisKey: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends RedisCommandBulkOptionByteString[R] with Product with Serializable

    Permalink
  12. case class Srandmembers[K, R](key: K, count: Long)(implicit redisKey: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends RedisCommandMultiBulkSeqByteString[R] with Product with Serializable

    Permalink
  13. case class Srem[K, V](key: K, members: Seq[V])(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends RedisCommandIntegerLong with Product with Serializable

    Permalink
  14. case class Sunion[K, KK, R](key: K, keys: Seq[KK])(implicit redisKey: ByteStringSerializer[K], redisKeys: ByteStringSerializer[KK], deserializerR: ByteStringDeserializer[R]) extends RedisCommandMultiBulkSeqByteString[R] with Product with Serializable

    Permalink
  15. 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 with Product with Serializable

    Permalink

Ungrouped