Package

redis.api

clusters

Permalink

package clusters

Visibility
  1. Public
  2. All

Type Members

  1. case class ClusterInfo() extends RedisCommand[Bulk, Map[String, String]] with Product with Serializable

    Permalink
  2. case class ClusterNode(host: String, port: Int, id: String) extends Product with Serializable

    Permalink
  3. case class ClusterNodeInfo(id: String, ip_port: String, flags: String, master: String, ping_sent: Long, pong_recv: Long, config_epoch: Long, link_state: String, slots: Array[String]) extends Product with Serializable

    Permalink
  4. case class ClusterNodes() extends RedisCommand[Bulk, Array[ClusterNodeInfo]] with Product with Serializable

    Permalink
  5. case class ClusterSlot(begin: Int, end: Int, master: ClusterNode, slaves: Seq[ClusterNode]) extends Comparable[ClusterSlot] with Product with Serializable

    Permalink
  6. case class ClusterSlots() extends RedisCommand[MultiBulk, Seq[ClusterSlot]] with Product with Serializable

    Permalink

Ungrouped