package clusters
Type Members
- case class ClusterInfo() extends RedisCommand[Bulk, Map[String, String]] with Product with Serializable
- case class ClusterNode(host: String, port: Int, id: String) extends Product with Serializable
- 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
- case class ClusterNodes() extends RedisCommand[Bulk, Array[ClusterNodeInfo]] with Product with Serializable
- case class ClusterSlot(begin: Int, end: Int, master: ClusterNode, slaves: Seq[ClusterNode]) extends Comparable[ClusterSlot] with Product with Serializable
- case class ClusterSlots() extends RedisCommand[MultiBulk, Seq[ClusterSlot]] with Product with Serializable