Skip to content

Commit d383038

Browse files
feat: add object fraq command (redis#2844)
* feat: add object fraq command Signed-off-by: rfyiamcool <[email protected]> * feat: add object fraq command Signed-off-by: rfyiamcool <[email protected]> --------- Signed-off-by: rfyiamcool <[email protected]> Co-authored-by: ofekshenawa <[email protected]>
1 parent f0ecdb4 commit d383038

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

commands_test.go

+5
Original file line numberDiff line numberDiff line change
@@ -686,6 +686,11 @@ var _ = Describe("Commands", func() {
686686
Expect(refCount.Err()).NotTo(HaveOccurred())
687687
Expect(refCount.Val()).To(Equal(int64(1)))
688688

689+
client.ConfigSet(ctx, "maxmemory-policy", "volatile-lfu")
690+
freq := client.ObjectFreq(ctx, "key")
691+
Expect(freq.Err()).NotTo(HaveOccurred())
692+
client.ConfigSet(ctx, "maxmemory-policy", "noeviction") // default
693+
689694
err := client.ObjectEncoding(ctx, "key").Err()
690695
Expect(err).NotTo(HaveOccurred())
691696

generic_commands.go

+7
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ type GenericCmdable interface {
1919
Keys(ctx context.Context, pattern string) *StringSliceCmd
2020
Migrate(ctx context.Context, host, port, key string, db int, timeout time.Duration) *StatusCmd
2121
Move(ctx context.Context, key string, db int) *BoolCmd
22+
ObjectFreq(ctx context.Context, key string) *IntCmd
2223
ObjectRefCount(ctx context.Context, key string) *IntCmd
2324
ObjectEncoding(ctx context.Context, key string) *StringCmd
2425
ObjectIdleTime(ctx context.Context, key string) *DurationCmd
@@ -159,6 +160,12 @@ func (c cmdable) Move(ctx context.Context, key string, db int) *BoolCmd {
159160
return cmd
160161
}
161162

163+
func (c cmdable) ObjectFreq(ctx context.Context, key string) *IntCmd {
164+
cmd := NewIntCmd(ctx, "object", "freq", key)
165+
_ = c(ctx, cmd)
166+
return cmd
167+
}
168+
162169
func (c cmdable) ObjectRefCount(ctx context.Context, key string) *IntCmd {
163170
cmd := NewIntCmd(ctx, "object", "refcount", key)
164171
_ = c(ctx, cmd)

0 commit comments

Comments
 (0)