mirror of
https://github.com/redis/go-redis.git
synced 2025-06-12 14:21:52 +03:00
Support multiple keys for the PFCOUNT command
This commit is contained in:
@ -1203,6 +1203,10 @@ var _ = Describe("Commands", func() {
|
||||
pfCount = client.PFCount("hllMerged")
|
||||
Expect(pfCount.Err()).NotTo(HaveOccurred())
|
||||
Expect(pfCount.Val()).To(Equal(int64(10)))
|
||||
|
||||
pfCount = client.PFCount("hll1", "hll2")
|
||||
Expect(pfCount.Err()).NotTo(HaveOccurred())
|
||||
Expect(pfCount.Val()).To(Equal(int64(10)))
|
||||
})
|
||||
})
|
||||
|
||||
|
Reference in New Issue
Block a user