We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 887e913 commit 5946693Copy full SHA for 5946693
commands_test.go
@@ -675,8 +675,10 @@ var _ = Describe("Commands", func() {
675
Expect(refCount.Err()).NotTo(HaveOccurred())
676
Expect(refCount.Val()).To(Equal(int64(1)))
677
678
+ client.ConfigSet(ctx, "maxmemory-policy", "volatile-lfu")
679
freq := client.ObjectFreq(ctx, "key")
680
Expect(freq.Err()).NotTo(HaveOccurred())
681
+ client.ConfigSet(ctx, "maxmemory-policy", "noeviction") // default
682
683
err := client.ObjectEncoding(ctx, "key").Err()
684
Expect(err).NotTo(HaveOccurred())
0 commit comments