Packages

trait NodeClusterApi extends KeyedClusterApi

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NodeClusterApi
  2. KeyedClusterApi
  3. ApiSubset
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Field = RedisSerialization.Field
    Definition Classes
    ApiSubset
  2. type Key = RedisSerialization.Key
    Definition Classes
    ApiSubset
  3. type Record = RedisSerialization.Record
    Definition Classes
    ApiSubset
  4. abstract type Result[A]

    The type constructor into which a result of each command is wrapped.

    The type constructor into which a result of each command is wrapped. For example if Result is Future, then incr returns Future[Long].

    Definition Classes
    ApiSubset
  5. type Value = RedisSerialization.Value
    Definition Classes
    ApiSubset

Abstract Value Members

  1. abstract def execute[A](command: RedisCommand[A]): Result[A]
    Definition Classes
    ApiSubset
  2. abstract val serialization: RedisSerialization
    Definition Classes
    ApiSubset

Concrete Value Members

  1. def clusterAddslots(slots: Iterable[Int]): Result[Unit]

    Executes CLUSTER ADDSLOTS or does nothing when slots is empty.

  2. def clusterAddslots(slot: Int, slots: Int*): Result[Unit]

    Executes CLUSTER ADDSLOTS

  3. def clusterCountFailureReports(nodeId: NodeId): Result[Long]

    Executes CLUSTER COUNT-FAILURE-REPORTS

  4. def clusterCountkeysinslot(slot: Int): Result[Long]

    Executes CLUSTER COUNTKEYSINSLOT

  5. def clusterDelslots(slots: Iterable[Int]): Result[Unit]

    Executes CLUSTER DELSLOTS or does nothing when slots is empty

  6. def clusterDelslots(slot: Int, slots: Int*): Result[Unit]

    Executes CLUSTER DELSLOTS

  7. def clusterFailover(option: commons.OptArg[FailoverOption] = OptArg.Empty): Result[Unit]

    Executes CLUSTER FAILOVER

  8. def clusterFailover: Result[Unit]

    Executes CLUSTER FAILOVER

  9. def clusterFlushslots: Result[Unit]
  10. def clusterForget(nodeId: NodeId): Result[Unit]

    Executes CLUSTER FORGET

  11. def clusterGetkeysinslot(slot: Int, count: Int): Result[Seq[Key]]

    Executes CLUSTER GETKEYSINSLOT

  12. def clusterInfo: Result[ClusterStateInfo]

    Executes CLUSTER INFO

  13. def clusterKeyslot(key: Key): Result[Int]

    Executes CLUSTER KEYSLOT

    Definition Classes
    KeyedClusterApi
  14. def clusterMeet(address: NodeAddress): Result[Unit]

    Executes CLUSTER MEET

  15. def clusterMyid: Result[NodeId]
  16. def clusterNodes: Result[Seq[NodeInfo]]

    Executes CLUSTER NODES

  17. def clusterReplicate(nodeId: NodeId): Result[Unit]

    Executes CLUSTER REPLICATE

  18. def clusterReset(hard: Boolean = false): Result[Unit]

    Executes CLUSTER RESET

  19. def clusterReset: Result[Unit]

    Executes CLUSTER RESET

  20. def clusterSaveconfig: Result[Unit]

    Executes CLUSTER SAVECONFIG

  21. def clusterSetConfigEpoch(configEpoch: Long): Result[Unit]

    Executes CLUSTER SET-CONFIG-EPOCH

  22. def clusterSetslot(slot: Int, subcommand: SetslotCmd): Result[Unit]

    Executes CLUSTER SETSLOT

  23. def clusterSlaves(nodeId: NodeId): Result[Seq[NodeInfo]]

    Executes CLUSTER SLAVES

  24. def clusterSlots: Result[Seq[SlotRangeMapping]]

    Executes CLUSTER SLOTS

  25. def keySlot(key: Key): Int
    Definition Classes
    KeyedClusterApi