redis
.
api
sets
package
sets
Visibility
Public
All
Type Members
case class
Sadd
[
K
,
V
]
(
key:
K
,
members:
Seq
[
V
]
)
(
implicit
redisKey:
ByteStringSerializer
[
K
]
,
convert:
ByteStringSerializer
[
V
]
)
extends
RedisCommandIntegerLong
with
Product
with
Serializable
case class
Scard
[
K
]
(
key:
K
)
(
implicit
redisKey:
ByteStringSerializer
[
K
]
)
extends
RedisCommandIntegerLong
with
Product
with
Serializable
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
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
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
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
case class
Sismember
[
K
,
V
]
(
key:
K
,
member:
V
)
(
implicit
redisKey:
ByteStringSerializer
[
K
]
,
convert:
ByteStringSerializer
[
V
]
)
extends
RedisCommandIntegerBoolean
with
Product
with
Serializable
case class
Smembers
[
K
,
R
]
(
key:
K
)
(
implicit
redisKey:
ByteStringSerializer
[
K
]
,
deserializerR:
ByteStringDeserializer
[
R
]
)
extends
RedisCommandMultiBulkSeqByteString
[
R
] with
Product
with
Serializable
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
case class
Spop
[
K
,
R
]
(
key:
K
)
(
implicit
redisKey:
ByteStringSerializer
[
K
]
,
deserializerR:
ByteStringDeserializer
[
R
]
)
extends
RedisCommandBulkOptionByteString
[
R
] with
Product
with
Serializable
case class
Srandmember
[
K
,
R
]
(
key:
K
)
(
implicit
redisKey:
ByteStringSerializer
[
K
]
,
deserializerR:
ByteStringDeserializer
[
R
]
)
extends
RedisCommandBulkOptionByteString
[
R
] with
Product
with
Serializable
case class
Srandmembers
[
K
,
R
]
(
key:
K
,
count:
Long
)
(
implicit
redisKey:
ByteStringSerializer
[
K
]
,
deserializerR:
ByteStringDeserializer
[
R
]
)
extends
RedisCommandMultiBulkSeqByteString
[
R
] with
Product
with
Serializable
case class
Srem
[
K
,
V
]
(
key:
K
,
members:
Seq
[
V
]
)
(
implicit
redisKey:
ByteStringSerializer
[
K
]
,
convert:
ByteStringSerializer
[
V
]
)
extends
RedisCommandIntegerLong
with
Product
with
Serializable
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
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
Ungrouped