lettucef-core
lettucef-core
dev.naoh.lettucef.api
Commands
LettuceF
ShutdownConfig
ShutdownConfig
dev.naoh.lettucef.api.commands
AclCommandsF
BaseCommandsF
ClusterCommandsF
EvalScriptingCommandsF
GeoCommandsF
HLLCommandsF
HashCommandsF
KeyCommandsF
ListCommandsF
ScriptingCommandsF
SentinelCommandsF
ServerCommandsF
SetCommandsF
SortedSetCommandsF
StreamCommandsF
StringCommandsF
TransactionCommandsF
dev.naoh.lettucef.api.models
RedisData
RedisData
RedisArray
RedisBoolean
RedisBulk
RedisDouble
RedisError
RedisInteger
RedisNull
RedisString
RedisRange
RedisRange
Boundary
Exclusive
Inclusive
Unbounded
Boundary
RedisScanCursor
RedisScanCursor
dev.naoh.lettucef.api.models.geo
GeoWithin
GeoWithin
dev.naoh.lettucef.api.models.pubsub
RedisPushed
RedisPushed
Message
PMessage
PSubscribed
PUnsubscribed
Subscribed
Unsubscribed
dev.naoh.lettucef.api.models.stream
ClaimedMessages
ClaimedMessages
PendingMessage
PendingMessage
PendingMessages
PendingMessages
StreamMessage
StreamMessage
dev.naoh.lettucef.core
CommonConnectionF
MasterReplicaRedisConnectionF
RedisAsyncCommandsF
RedisClientF
RedisClientF
ConnectionResource2
RedisClusterAsyncCommandsF
RedisClusterClientF
RedisClusterClientF
ConnectionResource1
RedisClusterConnectionF
RedisClusterSyncCommandsF
RedisConnectionF
RedisPubSubF
RedisPubSubF
RedisSentinelCommandsF
RedisSyncCommandsF
dev.naoh.lettucef.core.async
AclCommands
BaseCommands
ClusterCommands
EvalScriptingCommands
GeoCommands
HLLCommands
HashCommands
KeyCommands
ListCommands
ScriptingCommands
SentinelCommands
ServerCommands
SetCommands
SortedSetCommands
StreamCommands
StringCommands
TransactionCommands
dev.naoh.lettucef.core.commands
CommandsDeps
dev.naoh.lettucef.core.sync
AclCommands
BaseCommands
ClusterCommands
EvalScriptingCommands
GeoCommands
HLLCommands
HashCommands
KeyCommands
ListCommands
ScriptingCommands
SentinelCommands
ServerCommands
SetCommands
SortedSetCommands
StreamCommands
StringCommands
TransactionCommands
dev.naoh.lettucef.core.util
JavaFutureUtil
LettuceValueConverter
ManualDispatchHelper
RedisDataOutput
lettucef-core
/
dev.naoh.lettucef.api.commands
/
SetCommandsF
SetCommandsF
trait
SetCommandsF
[F[_], K, V]
Graph
Supertypes
Known subtypes
class
Object
trait
Matchable
class
Any
trait
SetCommands
[
F
,
K
,
V
]
class
RedisAsyncCommandsF
[
F
,
K
,
V
]
class
RedisClusterAsyncCommandsF
[
F
,
K
,
V
]
trait
SetCommands
[
F
,
K
,
V
]
class
RedisClusterSyncCommandsF
[
F
,
K
,
V
]
class
RedisSyncCommandsF
[
F
,
K
,
V
]
Value members
Value members
Abstract methods
def
sadd
(key:
K
, members:
V
*):
F
[
Long
]
def
scard
(key:
K
):
F
[
Long
]
def
sdiff
(keys:
K
*):
F
[
Set
[
V
]]
def
sdiffstore
(destination:
K
, keys:
K
*):
F
[
Long
]
def
sinter
(keys:
K
*):
F
[
Set
[
V
]]
def
sinterstore
(destination:
K
, keys:
K
*):
F
[
Long
]
def
sismember
(key:
K
, member:
V
):
F
[
Boolean
]
def
smembers
(key:
K
):
F
[
Set
[
V
]]
def
smismember
(key:
K
, members:
V
*):
F
[
Seq
[
Boolean
]]
def
smove
(source:
K
, destination:
K
, member:
V
):
F
[
Boolean
]
def
spop
(key:
K
):
F
[
Option
[
V
]]
def
spop
(key:
K
, count:
Long
):
F
[
Set
[
V
]]
def
srandmember
(key:
K
):
F
[
Option
[
V
]]
def
srandmember
(key:
K
, count:
Long
):
F
[
Seq
[
V
]]
def
srem
(key:
K
, members:
V
*):
F
[
Long
]
def
sscan
(key:
K
):
F
[
RedisScanCursor
[
V
]]
def
sscan
(key:
K
, scanArgs:
ScanArgs
):
F
[
RedisScanCursor
[
V
]]
def
sscan
(key:
K
, scanCursor:
ScanCursor
, scanArgs:
ScanArgs
):
F
[
RedisScanCursor
[
V
]]
def
sscan
(key:
K
, scanCursor:
ScanCursor
):
F
[
RedisScanCursor
[
V
]]
def
sunion
(keys:
K
*):
F
[
Set
[
V
]]
def
sunionstore
(destination:
K
, keys:
K
*):
F
[
Long
]