trait NodeClusterApi extends KeyedClusterApi
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- NodeClusterApi
- KeyedClusterApi
- ApiSubset
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
-
type
Field = RedisSerialization.Field
- Definition Classes
- ApiSubset
-
type
Key = RedisSerialization.Key
- Definition Classes
- ApiSubset
-
type
Record = RedisSerialization.Record
- Definition Classes
- ApiSubset
-
abstract
type
Result[A]
The type constructor into which a result of each command is wrapped.
-
type
Value = RedisSerialization.Value
- Definition Classes
- ApiSubset
Abstract Value Members
-
abstract
def
execute[A](command: RedisCommand[A]): Result[A]
- Definition Classes
- ApiSubset
-
abstract
val
serialization: RedisSerialization
- Definition Classes
- ApiSubset
Concrete Value Members
-
def
clusterAddslots(slots: Iterable[Int]): Result[Unit]
Executes CLUSTER ADDSLOTS or does nothing when
slots
is empty. -
def
clusterAddslots(slot: Int, slots: Int*): Result[Unit]
Executes CLUSTER ADDSLOTS
-
def
clusterCountFailureReports(nodeId: NodeId): Result[Long]
Executes CLUSTER COUNT-FAILURE-REPORTS
-
def
clusterCountkeysinslot(slot: Int): Result[Long]
Executes CLUSTER COUNTKEYSINSLOT
-
def
clusterDelslots(slots: Iterable[Int]): Result[Unit]
Executes CLUSTER DELSLOTS or does nothing when
slots
is empty -
def
clusterDelslots(slot: Int, slots: Int*): Result[Unit]
Executes CLUSTER DELSLOTS
-
def
clusterFailover(option: commons.OptArg[FailoverOption] = OptArg.Empty): Result[Unit]
Executes CLUSTER FAILOVER
-
def
clusterFailover: Result[Unit]
Executes CLUSTER FAILOVER
- def clusterFlushslots: Result[Unit]
-
def
clusterForget(nodeId: NodeId): Result[Unit]
Executes CLUSTER FORGET
-
def
clusterGetkeysinslot(slot: Int, count: Int): Result[Seq[Key]]
Executes CLUSTER GETKEYSINSLOT
-
def
clusterInfo: Result[ClusterStateInfo]
Executes CLUSTER INFO
-
def
clusterKeyslot(key: Key): Result[Int]
Executes CLUSTER KEYSLOT
Executes CLUSTER KEYSLOT
- Definition Classes
- KeyedClusterApi
-
def
clusterMeet(address: NodeAddress): Result[Unit]
Executes CLUSTER MEET
- def clusterMyid: Result[NodeId]
-
def
clusterNodes: Result[Seq[NodeInfo]]
Executes CLUSTER NODES
-
def
clusterReplicate(nodeId: NodeId): Result[Unit]
Executes CLUSTER REPLICATE
-
def
clusterReset(hard: Boolean = false): Result[Unit]
Executes CLUSTER RESET
-
def
clusterReset: Result[Unit]
Executes CLUSTER RESET
-
def
clusterSaveconfig: Result[Unit]
Executes CLUSTER SAVECONFIG
-
def
clusterSetConfigEpoch(configEpoch: Long): Result[Unit]
Executes CLUSTER SET-CONFIG-EPOCH
-
def
clusterSetslot(slot: Int, subcommand: SetslotCmd): Result[Unit]
Executes CLUSTER SETSLOT
-
def
clusterSlaves(nodeId: NodeId): Result[Seq[NodeInfo]]
Executes CLUSTER SLAVES
-
def
clusterSlots: Result[Seq[SlotRangeMapping]]
Executes CLUSTER SLOTS
-
def
keySlot(key: Key): Int
- Definition Classes
- KeyedClusterApi