Skip to content

Commit 40e1893

Browse files
committed
Support NOVALUES parameter for HSCAN
Issue #2919 The NOVALUES parameter instructs HSCAN to only return the hash keys, without values.
1 parent 65c527c commit 40e1893

File tree

3 files changed

+51
-2
lines changed

3 files changed

+51
-2
lines changed

commands_test.go

+20-2
Original file line numberDiff line numberDiff line change
@@ -1100,8 +1100,26 @@ var _ = Describe("Commands", func() {
11001100

11011101
keys, cursor, err := client.HScan(ctx, "myhash", 0, "", 0).Result()
11021102
Expect(err).NotTo(HaveOccurred())
1103-
Expect(keys).NotTo(BeEmpty())
1104-
Expect(cursor).NotTo(BeZero())
1103+
// If we don't get at least two items back, it's really strange.
1104+
Expect(cursor).To(BeNumerically(">=", 2))
1105+
Expect(len(keys)).To(BeNumerically(">=", 2))
1106+
Expect(keys[0]).To(HavePrefix("key"))
1107+
Expect(keys[1]).To(Equal("hello"))
1108+
})
1109+
1110+
It("should HScan without values", func() {
1111+
for i := 0; i < 1000; i++ {
1112+
sadd := client.HSet(ctx, "myhash", fmt.Sprintf("key%d", i), "hello")
1113+
Expect(sadd.Err()).NotTo(HaveOccurred())
1114+
}
1115+
1116+
keys, cursor, err := client.HScanNoValues(ctx, "myhash", 0, "", 0).Result()
1117+
Expect(err).NotTo(HaveOccurred())
1118+
// If we don't get at least two items back, it's really strange.
1119+
Expect(cursor).To(BeNumerically(">=", 2))
1120+
Expect(len(keys)).To(BeNumerically(">=", 2))
1121+
Expect(keys[0]).To(HavePrefix("key"))
1122+
Expect(keys[1]).To(HavePrefix("key"))
11051123
})
11061124

11071125
It("should ZScan", func() {

hash_commands.go

+15
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ type HashCmdable interface {
1616
HMSet(ctx context.Context, key string, values ...interface{}) *BoolCmd
1717
HSetNX(ctx context.Context, key, field string, value interface{}) *BoolCmd
1818
HScan(ctx context.Context, key string, cursor uint64, match string, count int64) *ScanCmd
19+
HScanNoValues(ctx context.Context, key string, cursor uint64, match string, count int64) *ScanCmd
1920
HVals(ctx context.Context, key string) *StringSliceCmd
2021
HRandField(ctx context.Context, key string, count int) *StringSliceCmd
2122
HRandFieldWithValues(ctx context.Context, key string, count int) *KeyValueSliceCmd
@@ -172,3 +173,17 @@ func (c cmdable) HScan(ctx context.Context, key string, cursor uint64, match str
172173
_ = c(ctx, cmd)
173174
return cmd
174175
}
176+
177+
func (c cmdable) HScanNoValues(ctx context.Context, key string, cursor uint64, match string, count int64) *ScanCmd {
178+
args := []interface{}{"hscan", key, cursor}
179+
if match != "" {
180+
args = append(args, "match", match)
181+
}
182+
if count > 0 {
183+
args = append(args, "count", count)
184+
}
185+
args = append(args, "novalues")
186+
cmd := NewScanCmd(ctx, c, args...)
187+
_ = c(ctx, cmd)
188+
return cmd
189+
}

iterator_test.go

+16
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,22 @@ var _ = Describe("ScanIterator", func() {
9696
Expect(vals).To(HaveLen(71 * 2))
9797
Expect(vals).To(ContainElement("K01"))
9898
Expect(vals).To(ContainElement("K71"))
99+
Expect(vals).To(ContainElement("x"))
100+
})
101+
102+
It("should hscan without values across multiple pages", func() {
103+
Expect(hashSeed(71)).NotTo(HaveOccurred())
104+
105+
var vals []string
106+
iter := client.HScanNoValues(ctx, hashKey, 0, "", 10).Iterator()
107+
for iter.Next(ctx) {
108+
vals = append(vals, iter.Val())
109+
}
110+
Expect(iter.Err()).NotTo(HaveOccurred())
111+
Expect(vals).To(HaveLen(71))
112+
Expect(vals).To(ContainElement("K01"))
113+
Expect(vals).To(ContainElement("K71"))
114+
Expect(vals).NotTo(ContainElement("x"))
99115
})
100116

101117
It("should scan to page borders", func() {

0 commit comments

Comments
 (0)