forked from mirror/redis
✨ Add GETKEYSINSLOT api call for clustered redis
This commit is contained in:
parent
40336e5ef8
commit
65932a4b9b
|
@ -637,6 +637,12 @@ var _ = Describe("ClusterClient", func() {
|
||||||
Expect(hashSlot).To(Equal(int64(hashtag.Slot("somekey"))))
|
Expect(hashSlot).To(Equal(int64(hashtag.Slot("somekey"))))
|
||||||
})
|
})
|
||||||
|
|
||||||
|
It("should CLUSTER GETKEYSINSLOT", func() {
|
||||||
|
keys, err := client.ClusterGetKeysInSlot(hashtag.Slot("somekey"), 1).Result()
|
||||||
|
Expect(err).NotTo(HaveOccurred())
|
||||||
|
Expect(len(keys)).To(Equal(0))
|
||||||
|
})
|
||||||
|
|
||||||
It("should CLUSTER COUNT-FAILURE-REPORTS", func() {
|
It("should CLUSTER COUNT-FAILURE-REPORTS", func() {
|
||||||
n, err := client.ClusterCountFailureReports(cluster.nodeIds[0]).Result()
|
n, err := client.ClusterCountFailureReports(cluster.nodeIds[0]).Result()
|
||||||
Expect(err).NotTo(HaveOccurred())
|
Expect(err).NotTo(HaveOccurred())
|
||||||
|
|
|
@ -270,6 +270,7 @@ type Cmdable interface {
|
||||||
ClusterResetHard() *StatusCmd
|
ClusterResetHard() *StatusCmd
|
||||||
ClusterInfo() *StringCmd
|
ClusterInfo() *StringCmd
|
||||||
ClusterKeySlot(key string) *IntCmd
|
ClusterKeySlot(key string) *IntCmd
|
||||||
|
ClusterGetKeysInSlot(slot int, count int) *StringSliceCmd
|
||||||
ClusterCountFailureReports(nodeID string) *IntCmd
|
ClusterCountFailureReports(nodeID string) *IntCmd
|
||||||
ClusterCountKeysInSlot(slot int) *IntCmd
|
ClusterCountKeysInSlot(slot int) *IntCmd
|
||||||
ClusterDelSlots(slots ...int) *StatusCmd
|
ClusterDelSlots(slots ...int) *StatusCmd
|
||||||
|
@ -2402,6 +2403,12 @@ func (c *cmdable) ClusterKeySlot(key string) *IntCmd {
|
||||||
return cmd
|
return cmd
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *cmdable) ClusterGetKeysInSlot(slot int, count int) *StringSliceCmd {
|
||||||
|
cmd := NewStringSliceCmd("cluster", "getkeysinslot", slot, count)
|
||||||
|
c.process(cmd)
|
||||||
|
return cmd
|
||||||
|
}
|
||||||
|
|
||||||
func (c *cmdable) ClusterCountFailureReports(nodeID string) *IntCmd {
|
func (c *cmdable) ClusterCountFailureReports(nodeID string) *IntCmd {
|
||||||
cmd := NewIntCmd("cluster", "count-failure-reports", nodeID)
|
cmd := NewIntCmd("cluster", "count-failure-reports", nodeID)
|
||||||
c.process(cmd)
|
c.process(cmd)
|
||||||
|
|
Loading…
Reference in New Issue