forked from qodo-benchmark/redis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhash-field-expire.tcl
More file actions
1322 lines (1119 loc) · 53.3 KB
/
hash-field-expire.tcl
File metadata and controls
1322 lines (1119 loc) · 53.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
######## HEXPIRE family commands
# Field does not exists
set E_NO_FIELD -2
# Specified NX | XX | GT | LT condition not met
set E_FAIL 0
# expiration time set/updated
set E_OK 1
# Field deleted because the specified expiration time is in the past
set E_DELETED 2
######## HTTL family commands
set T_NO_FIELD -2
set T_NO_EXPIRY -1
######## HPERIST
set P_NO_FIELD -2
set P_NO_EXPIRY -1
set P_OK 1
############################### AUX FUNCS ######################################
proc get_stat_subexpiry {r} {
set input_string [r info keyspace]
set hash_count 0
foreach line [split $input_string \n] {
if {[regexp {subexpiry=(\d+)} $line -> value]} {
return $value
}
}
return 0
}
proc get_keys {l} {
set res {}
foreach entry $l {
set key [lindex $entry 0]
lappend res $key
}
return $res
}
proc dumpAllHashes {client} {
set keyAndFields(0,0) 0
unset keyAndFields
# keep keys sorted for comparison
foreach key [lsort [$client keys *]] {
set fields [$client hgetall $key]
foreach f $fields {
set keyAndFields($key,$f) [$client hpexpiretime $key FIELDS 1 $f]
}
}
return [array get keyAndFields]
}
############################### TESTS #########################################
start_server {tags {"external:skip needs:debug"}} {
foreach type {listpackex hashtable} {
if {$type eq "hashtable"} {
r config set hash-max-listpack-entries 0
} else {
r config set hash-max-listpack-entries 512
}
test "HEXPIRE/HEXPIREAT/HPEXPIRE/HPEXPIREAT - Returns array if the key does not exist" {
r del myhash
assert_equal [r HEXPIRE myhash 1000 FIELDS 1 a] [list $E_NO_FIELD]
assert_equal [r HEXPIREAT myhash 1000 FIELDS 1 a] [list $E_NO_FIELD]
assert_equal [r HPEXPIRE myhash 1000 FIELDS 2 a b] [list $E_NO_FIELD $E_NO_FIELD]
assert_equal [r HPEXPIREAT myhash 1000 FIELDS 2 a b] [list $E_NO_FIELD $E_NO_FIELD]
}
test "HEXPIRE/HEXPIREAT/HPEXPIRE/HPEXPIREAT - Verify that the expire time does not overflow" {
r del myhash
r hset myhash f1 v1
# The expire time can't be negative.
assert_error {ERR invalid expire time, must be >= 0} {r HEXPIRE myhash -1 FIELDS 1 f1}
assert_error {ERR invalid expire time, must be >= 0} {r HEXPIRE myhash -9223372036854775808 FIELDS 1 f1}
# The expire time can't be greater than the EB_EXPIRE_TIME_MAX
assert_error {ERR invalid expire time in 'hexpire' command} {r HEXPIRE myhash [expr (1<<48) / 1000] FIELDS 1 f1}
assert_error {ERR invalid expire time in 'hexpireat' command} {r HEXPIREAT myhash [expr (1<<48) / 1000 + [clock seconds] + 100] FIELDS 1 f1}
assert_error {ERR invalid expire time in 'hpexpire' command} {r HPEXPIRE myhash [expr (1<<48)] FIELDS 1 f1}
assert_error {ERR invalid expire time in 'hpexpireat' command} {r HPEXPIREAT myhash [expr (1<<48) + [clock milliseconds] + 100] FIELDS 1 f1}
}
test "HPEXPIRE(AT) - Test 'NX' flag ($type)" {
r del myhash
r hset myhash field1 value1 field2 value2 field3 value3
assert_equal [r hpexpire myhash 1000 NX FIELDS 1 field1] [list $E_OK]
assert_equal [r hpexpire myhash 1000 NX FIELDS 2 field1 field2] [list $E_FAIL $E_OK]
r del myhash
r hset myhash field1 value1 field2 value2 field3 value3
assert_equal [r hpexpireat myhash [expr {([clock seconds]+1000)*1000}] NX FIELDS 1 field1] [list $E_OK]
assert_equal [r hpexpireat myhash [expr {([clock seconds]+1000)*1000}] NX FIELDS 2 field1 field2] [list $E_FAIL $E_OK]
}
test "HPEXPIRE(AT) - Test 'XX' flag ($type)" {
r del myhash
r hset myhash field1 value1 field2 value2 field3 value3
assert_equal [r hpexpire myhash 1000 NX FIELDS 2 field1 field2] [list $E_OK $E_OK]
assert_equal [r hpexpire myhash 1000 XX FIELDS 2 field1 field3] [list $E_OK $E_FAIL]
r del myhash
r hset myhash field1 value1 field2 value2 field3 value3
assert_equal [r hpexpireat myhash [expr {([clock seconds]+1000)*1000}] NX FIELDS 2 field1 field2] [list $E_OK $E_OK]
assert_equal [r hpexpireat myhash [expr {([clock seconds]+1000)*1000}] XX FIELDS 2 field1 field3] [list $E_OK $E_FAIL]
}
test "HPEXPIRE(AT) - Test 'GT' flag ($type)" {
r del myhash
r hset myhash field1 value1 field2 value2
assert_equal [r hpexpire myhash 1000 NX FIELDS 1 field1] [list $E_OK]
assert_equal [r hpexpire myhash 2000 NX FIELDS 1 field2] [list $E_OK]
assert_equal [r hpexpire myhash 1500 GT FIELDS 2 field1 field2] [list $E_OK $E_FAIL]
r del myhash
r hset myhash field1 value1 field2 value2
assert_equal [r hpexpireat myhash [expr {([clock seconds]+1000)*1000}] NX FIELDS 1 field1] [list $E_OK]
assert_equal [r hpexpireat myhash [expr {([clock seconds]+2000)*1000}] NX FIELDS 1 field2] [list $E_OK]
assert_equal [r hpexpireat myhash [expr {([clock seconds]+1500)*1000}] GT FIELDS 2 field1 field2] [list $E_OK $E_FAIL]
}
test "HPEXPIRE(AT) - Test 'LT' flag ($type)" {
r del myhash
r hset myhash field1 value1 field2 value2 field3 value3
assert_equal [r hpexpire myhash 1000 NX FIELDS 1 field1] [list $E_OK]
assert_equal [r hpexpire myhash 2000 NX FIELDS 1 field2] [list $E_OK]
assert_equal [r hpexpire myhash 1500 LT FIELDS 3 field1 field2 field3] [list $E_FAIL $E_OK $E_OK]
r del myhash
r hset myhash field1 value1 field2 value2 field3 value3
assert_equal [r hpexpireat myhash [expr {([clock seconds]+1000)*1000}] NX FIELDS 1 field1] [list $E_OK]
assert_equal [r hpexpireat myhash [expr {([clock seconds]+2000)*1000}] NX FIELDS 1 field2] [list $E_OK]
assert_equal [r hpexpireat myhash [expr {([clock seconds]+1500)*1000}] LT FIELDS 3 field1 field2 field3] [list $E_FAIL $E_OK $E_OK]
}
test "HPEXPIREAT - field not exists or TTL is in the past ($type)" {
r del myhash
r hset myhash f1 v1 f2 v2 f4 v4
r hexpire myhash 1000 NX FIELDS 1 f4
assert_equal [r hpexpireat myhash [expr {([clock seconds]-1)*1000}] NX FIELDS 4 f1 f2 f3 f4] "$E_DELETED $E_DELETED $E_NO_FIELD $E_FAIL"
assert_equal [r hexists myhash field1] 0
}
test "HPEXPIRE - wrong number of arguments ($type)" {
r del myhash
r hset myhash f1 v1
assert_error {*Parameter `numFields` should be greater than 0} {r hpexpire myhash 1000 NX FIELDS 0 f1 f2 f3}
# <count> not match with actual number of fields
assert_error {*parameter must match the number*} {r hpexpire myhash 1000 NX FIELDS 4 f1 f2 f3}
assert_error {*parameter must match the number*} {r hpexpire myhash 1000 NX FIELDS 2 f1 f2 f3}
}
test "HPEXPIRE - parameter expire-time near limit of 2^46 ($type)" {
r del myhash
r hset myhash f1 v1
# below & above
assert_equal [r hpexpire myhash [expr (1<<46) - [clock milliseconds] - 1000 ] FIELDS 1 f1] [list $E_OK]
assert_error {*invalid expire time*} {r hpexpire myhash [expr (1<<46) - [clock milliseconds] + 100 ] FIELDS 1 f1}
}
test "Lazy Expire - fields are lazy deleted ($type)" {
r debug set-active-expire 0
r del myhash
r hset myhash f1 v1 f2 v2 f3 v3
r hpexpire myhash 1 NX FIELDS 3 f1 f2 f3
after 5
# Verify that still exists even if all fields are expired
assert_equal 1 [r EXISTS myhash]
# Verify that len counts also expired fields
assert_equal 3 [r HLEN myhash]
# Trying access to expired field should delete it. Len should be updated
assert_equal 0 [r hexists myhash f1]
assert_equal 2 [r HLEN myhash]
# Trying access another expired field should delete it. Len should be updated
assert_equal "" [r hget myhash f2]
assert_equal 1 [r HLEN myhash]
# Trying access last expired field should delete it. hash shouldn't exists afterward.
assert_equal 0 [r hstrlen myhash f3]
assert_equal 0 [r HLEN myhash]
assert_equal 0 [r EXISTS myhash]
# Restore default
r debug set-active-expire 1
}
test "Active Expire - deletes hash that all its fields got expired ($type)" {
r flushall
set hash_sizes {1 15 16 17 31 32 33 40}
foreach h $hash_sizes {
for {set i 1} {$i <= $h} {incr i} {
# Random expiration time (Take care expired not after "mix$h")
r hset hrand$h f$i v$i
r hpexpire hrand$h [expr {70 + int(rand() * 30)}] FIELDS 1 f$i
assert_equal 1 [r HEXISTS hrand$h f$i]
# Same expiration time (Take care expired not after "mix$h")
r hset same$h f$i v$i
r hpexpire same$h 100 FIELDS 1 f$i
assert_equal 1 [r HEXISTS same$h f$i]
# same expiration time
r hset mix$h f$i v$i fieldWithoutExpire$i v$i
r hpexpire mix$h 100 FIELDS 1 f$i
assert_equal 1 [r HEXISTS mix$h f$i]
}
}
# Wait for active expire
wait_for_condition 50 20 { [r EXISTS same40] == 0 } else { fail "hash `same40` should be expired" }
# Verify that all fields got expired and keys got deleted
foreach h $hash_sizes {
wait_for_condition 50 20 {
[r HLEN mix$h] == $h
} else {
fail "volatile fields of hash `mix$h` should be expired"
}
for {set i 1} {$i <= $h} {incr i} {
assert_equal 0 [r HEXISTS mix$h f$i]
}
assert_equal 0 [r EXISTS hrand$h]
assert_equal 0 [r EXISTS same$h]
}
}
test "HPEXPIRE - Flushall deletes all pending expired fields ($type)" {
r del myhash
r hset myhash field1 value1 field2 value2
r hpexpire myhash 10000 NX FIELDS 1 field1
r hpexpire myhash 10000 NX FIELDS 1 field2
r flushall
r del myhash
r hset myhash field1 value1 field2 value2
r hpexpire myhash 10000 NX FIELDS 1 field1
r hpexpire myhash 10000 NX FIELDS 1 field2
r flushall async
}
test "HTTL/HPTTL - Returns array if the key does not exist" {
r del myhash
assert_equal [r HTTL myhash FIELDS 1 a] [list $T_NO_FIELD]
assert_equal [r HPTTL myhash FIELDS 2 a b] [list $T_NO_FIELD $T_NO_FIELD]
}
test "HTTL/HPTTL - Input validation gets failed on nonexists field or field without expire ($type)" {
r del myhash
r HSET myhash field1 value1 field2 value2
r HPEXPIRE myhash 1000 NX FIELDS 1 field1
foreach cmd {HTTL HPTTL} {
assert_equal [r $cmd myhash FIELDS 2 field2 non_exists_field] "$T_NO_EXPIRY $T_NO_FIELD"
# <count> not match with actual number of fields
assert_error {*parameter must match the number*} {r $cmd myhash FIELDS 1 non_exists_field1 non_exists_field2}
assert_error {*parameter must match the number*} {r $cmd myhash FIELDS 3 non_exists_field1 non_exists_field2}
}
}
test "HTTL/HPTTL - returns time to live in seconds/msillisec ($type)" {
r del myhash
r HSET myhash field1 value1 field2 value2
r HPEXPIRE myhash 2000 NX FIELDS 2 field1 field2
set ttlArray [r HTTL myhash FIELDS 2 field1 field2]
assert_range [lindex $ttlArray 0] 1 2
set ttl [r HPTTL myhash FIELDS 1 field1]
assert_range $ttl 1000 2000
}
test "HEXPIRETIME/HPEXPIRETIME - Returns array if the key does not exist" {
r del myhash
assert_equal [r HEXPIRETIME myhash FIELDS 1 a] [list $T_NO_FIELD]
assert_equal [r HPEXPIRETIME myhash FIELDS 2 a b] [list $T_NO_FIELD $T_NO_FIELD]
}
test "HEXPIRETIME - returns TTL in Unix timestamp ($type)" {
r del myhash
r HSET myhash field1 value1
set lo [expr {[clock seconds] + 1}]
set hi [expr {[clock seconds] + 2}]
r HPEXPIRE myhash 1000 NX FIELDS 1 field1
assert_range [r HEXPIRETIME myhash FIELDS 1 field1] $lo $hi
assert_range [r HPEXPIRETIME myhash FIELDS 1 field1] [expr $lo*1000] [expr $hi*1000]
}
test "HTTL/HPTTL - Verify TTL progress until expiration ($type)" {
r del myhash
r hset myhash field1 value1 field2 value2
r hpexpire myhash 1000 NX FIELDS 1 field1
assert_range [r HPTTL myhash FIELDS 1 field1] 100 1000
assert_range [r HTTL myhash FIELDS 1 field1] 0 1
after 100
assert_range [r HPTTL myhash FIELDS 1 field1] 1 901
after 910
assert_equal [r HPTTL myhash FIELDS 1 field1] $T_NO_FIELD
assert_equal [r HTTL myhash FIELDS 1 field1] $T_NO_FIELD
}
test "HPEXPIRE - DEL hash with non expired fields (valgrind test) ($type)" {
r del myhash
r hset myhash field1 value1 field2 value2
r hpexpire myhash 10000 NX FIELDS 1 field1
r del myhash
}
test "HEXPIREAT - Set time in the past ($type)" {
r del myhash
r hset myhash field1 value1
assert_equal [r hexpireat myhash [expr {[clock seconds] - 1}] NX FIELDS 1 field1] $E_DELETED
assert_equal [r hexists myhash field1] 0
}
test "HEXPIREAT - Set time and then get TTL ($type)" {
r del myhash
r hset myhash field1 value1
r hexpireat myhash [expr {[clock seconds] + 2}] NX FIELDS 1 field1
assert_range [r hpttl myhash FIELDS 1 field1] 1000 2000
assert_range [r httl myhash FIELDS 1 field1] 1 2
r hexpireat myhash [expr {[clock seconds] + 5}] XX FIELDS 1 field1
assert_range [r httl myhash FIELDS 1 field1] 4 5
}
test "Lazy Expire - delete hash with expired fields ($type)" {
r del myhash
r debug set-active-expire 0
r hset myhash k v
r hpexpire myhash 1 NX FIELDS 1 k
after 5
r del myhash
r debug set-active-expire 1
}
test "Test HRANDFIELD deletes all expired fields ($type)" {
r debug set-active-expire 0
r flushall
r config resetstat
r hset myhash f1 v1 f2 v2 f3 v3 f4 v4 f5 v5
r hpexpire myhash 1 FIELDS 2 f1 f2
after 5
assert_equal [lsort [r hrandfield myhash 5]] "f3 f4 f5"
assert_equal [s expired_subkeys] 2
r hpexpire myhash 1 FIELDS 3 f3 f4 f5
after 5
assert_equal [lsort [r hrandfield myhash 5]] ""
assert_equal [r keys *] ""
r del myhash
r hset myhash f1 v1 f2 v2 f3 v3
r hpexpire myhash 1 FIELDS 1 f1
after 5
set res [r hrandfield myhash]
assert {$res == "f2" || $res == "f3"}
r hpexpire myhash 1 FIELDS 1 f2
after 5
assert_equal [lsort [r hrandfield myhash 5]] "f3"
r hpexpire myhash 1 FIELDS 1 f3
after 5
assert_equal [r hrandfield myhash] ""
assert_equal [r keys *] ""
r debug set-active-expire 1
}
test "Lazy Expire - HLEN does count expired fields ($type)" {
# Enforce only lazy expire
r debug set-active-expire 0
r del h1 h4 h18 h20
r hset h1 k1 v1
r hpexpire h1 1 NX FIELDS 1 k1
r hset h4 k1 v1 k2 v2 k3 v3 k4 v4
r hpexpire h4 1 NX FIELDS 3 k1 k3 k4
# beyond 16 fields: HFE DS (ebuckets) converts from list to rax
r hset h18 k1 v1 k2 v2 k3 v3 k4 v4 k5 v5 k6 v6 k7 v7 k8 v8 k9 v9 k10 v10 k11 v11 k12 v12 k13 v13 k14 v14 k15 v15 k16 v16 k17 v17 k18 v18
r hpexpire h18 1 NX FIELDS 18 k1 k2 k3 k4 k5 k6 k7 k8 k9 k10 k11 k12 k13 k14 k15 k16 k17 k18
r hset h20 k1 v1 k2 v2 k3 v3 k4 v4 k5 v5 k6 v6 k7 v7 k8 v8 k9 v9 k10 v10 k11 v11 k12 v12 k13 v13 k14 v14 k15 v15 k16 v16 k17 v17 k18 v18 k19 v19 k20 v20
r hpexpire h20 1 NX FIELDS 2 k1 k2
after 10
assert_equal [r hlen h1] 1
assert_equal [r hlen h4] 4
assert_equal [r hlen h18] 18
assert_equal [r hlen h20] 20
# Restore to support active expire
r debug set-active-expire 1
}
test "Lazy Expire - HSCAN does not report expired fields ($type)" {
# Enforce only lazy expire
r debug set-active-expire 0
r del h1 h20 h4 h18 h20
r hset h1 01 01
r hpexpire h1 1 NX FIELDS 1 01
r hset h4 01 01 02 02 03 03 04 04
r hpexpire h4 1 NX FIELDS 3 01 03 04
# beyond 16 fields hash-field expiration DS (ebuckets) converts from list to rax
r hset h18 01 01 02 02 03 03 04 04 05 05 06 06 07 07 08 08 09 09 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18
r hpexpire h18 1 NX FIELDS 18 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18
r hset h20 01 01 02 02 03 03 04 04 05 05 06 06 07 07 08 08 09 09 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20
r hpexpire h20 1 NX FIELDS 2 01 02
after 10
# Verify SCAN does not report expired fields
assert_equal [lsort -unique [lindex [r hscan h1 0 COUNT 10] 1]] ""
assert_equal [lsort -unique [lindex [r hscan h4 0 COUNT 10] 1]] "02"
assert_equal [lsort -unique [lindex [r hscan h18 0 COUNT 10] 1]] ""
assert_equal [lsort -unique [lindex [r hscan h20 0 COUNT 100] 1]] "03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20"
# Restore to support active expire
r debug set-active-expire 1
}
test "Test HSCAN with mostly expired fields return empty result ($type)" {
r debug set-active-expire 0
# Create hash with 1000 fields and 999 of them will be expired
r del myhash
for {set i 1} {$i <= 1000} {incr i} {
r hset myhash field$i value$i
if {$i > 1} {
r hpexpire myhash 1 NX FIELDS 1 field$i
}
}
after 3
# Verify iterative HSCAN returns either empty result or only the first field
set countEmptyResult 0
set cur 0
while 1 {
set res [r hscan myhash $cur]
set cur [lindex $res 0]
# if the result is not empty, it should contain only the first field
if {[llength [lindex $res 1]] > 0} {
assert_equal [lindex $res 1] "field1 value1"
} else {
incr countEmptyResult
}
if {$cur == 0} break
}
assert {$countEmptyResult > 0}
r debug set-active-expire 1
}
test "Lazy Expire - verify various HASH commands handling expired fields ($type)" {
# Enforce only lazy expire
r debug set-active-expire 0
r del h1 h2 h3 h4 h5 h18
r hset h1 01 01
r hset h2 01 01 02 02
r hset h3 01 01 02 02 03 03
r hset h4 1 99 2 99 3 99 4 99
r hset h5 1 1 2 22 3 333 4 4444 5 55555
r hset h6 01 01 02 02 03 03 04 04 05 05 06 06
r hset h18 01 01 02 02 03 03 04 04 05 05 06 06 07 07 08 08 09 09 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18
r hpexpire h1 1 NX FIELDS 1 01
r hpexpire h2 1 NX FIELDS 1 01
r hpexpire h2 1 NX FIELDS 1 02
r hpexpire h3 1 NX FIELDS 1 01
r hpexpire h4 1 NX FIELDS 1 2
r hpexpire h5 1 NX FIELDS 1 3
r hpexpire h6 1 NX FIELDS 1 05
r hpexpire h18 1 NX FIELDS 17 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17
after 5
# Verify HDEL not ignore expired field. It is too much overhead to check
# if the field is expired before deletion.
assert_equal [r HDEL h1 01] "1"
# Verify HGET ignore expired field
r config resetstat
assert_equal [r HGET h2 01] ""
assert_equal [s expired_subkeys] 1
assert_equal [r HGET h2 02] ""
assert_equal [s expired_subkeys] 2
assert_equal [r HGET h3 01] ""
assert_equal [r HGET h3 02] "02"
assert_equal [r HGET h3 03] "03"
assert_equal [s expired_subkeys] 3
# Verify HINCRBY ignore expired field
assert_equal [r HINCRBY h4 2 1] "1"
assert_equal [s expired_subkeys] 4
assert_equal [r HINCRBY h4 3 1] "100"
# Verify HSTRLEN ignore expired field
assert_equal [r HSTRLEN h5 3] "0"
assert_equal [s expired_subkeys] 5
assert_equal [r HSTRLEN h5 4] "4"
assert_equal [lsort [r HKEYS h6]] "01 02 03 04 06"
assert_equal [s expired_subkeys] 5
# Verify HEXISTS ignore expired field
assert_equal [r HEXISTS h18 07] "0"
assert_equal [s expired_subkeys] 6
assert_equal [r HEXISTS h18 18] "1"
# Verify HVALS ignore expired field
assert_equal [lsort [r HVALS h18]] "18"
assert_equal [s expired_subkeys] 6
# Restore to support active expire
r debug set-active-expire 1
}
test "A field with TTL overridden with another value (TTL discarded) ($type)" {
r del myhash
r hset myhash field1 value1 field2 value2 field3 value3
r hpexpire myhash 10000 NX FIELDS 1 field1
r hpexpire myhash 1 NX FIELDS 1 field2
# field2 TTL will be discarded
r hset myhash field2 value4
after 5
# Expected TTL will be discarded
assert_equal [r hget myhash field2] "value4"
assert_equal [r httl myhash FIELDS 2 field2 field3] "$T_NO_EXPIRY $T_NO_EXPIRY"
assert_not_equal [r httl myhash FIELDS 1 field1] "$T_NO_EXPIRY"
}
test "Modify TTL of a field ($type)" {
r del myhash
r hset myhash field1 value1
r hpexpire myhash 200000 NX FIELDS 1 field1
r hpexpire myhash 1000000 XX FIELDS 1 field1
after 15
assert_equal [r hget myhash field1] "value1"
assert_range [r hpttl myhash FIELDS 1 field1] 900000 1000000
}
test "Test return value of set operation ($type)" {
r del myhash
r hset myhash f1 v1 f2 v2
r hexpire myhash 100000 FIELDS 1 f1
assert_equal [r hset myhash f2 v2] 0
assert_equal [r hset myhash f3 v3] 1
assert_equal [r hset myhash f3 v3 f4 v4] 1
assert_equal [r hset myhash f3 v3 f5 v5 f6 v6] 2
}
test "Test HGETALL not return expired fields ($type)" {
# Test with small hash
r debug set-active-expire 0
r del myhash
r hset myhash1 f1 v1 f2 v2 f3 v3 f4 v4 f5 v5 f6 v6
r hpexpire myhash1 1 NX FIELDS 3 f2 f4 f6
after 10
assert_equal [lsort [r hgetall myhash1]] "f1 f3 f5 v1 v3 v5"
# Test with large hash
r del myhash
for {set i 1} {$i <= 600} {incr i} {
r hset myhash f$i v$i
if {$i > 3} { r hpexpire myhash 1 NX FIELDS 1 f$i }
}
after 10
assert_equal [lsort [r hgetall myhash]] [lsort "f1 f2 f3 v1 v2 v3"]
r debug set-active-expire 1
}
test "Test RENAME hash with fields to be expired ($type)" {
r debug set-active-expire 0
r del myhash
r hset myhash field1 value1
r hpexpire myhash 20 NX FIELDS 1 field1
r rename myhash myhash2
assert_equal [r exists myhash] 0
assert_range [r hpttl myhash2 FIELDS 1 field1] 1 20
after 25
# Verify the renamed key exists
assert_equal [r exists myhash2] 1
r debug set-active-expire 1
# Only active expire will delete the key
wait_for_condition 30 10 { [r exists myhash2] == 0 } else { fail "`myhash2` should be expired" }
}
test "Test RENAME hash that had HFEs but not during the rename ($type)" {
r del h1
r hset h1 f1 v1 f2 v2
r hpexpire h1 1 FIELDS 1 f1
after 20
r rename h1 h1_renamed
assert_equal [r exists h1] 0
assert_equal [r exists h1_renamed] 1
assert_equal [r hgetall h1_renamed] {f2 v2}
r hpexpire h1_renamed 1 FIELDS 1 f2
# Only active expire will delete the key
wait_for_condition 30 10 { [r exists h1_renamed] == 0 } else { fail "`h1_renamed` should be expired" }
}
test "MOVE to another DB hash with fields to be expired ($type)" {
r select 9
r flushall
r hset myhash field1 value1
r hpexpire myhash 100 NX FIELDS 1 field1
r move myhash 10
assert_equal [r exists myhash] 0
assert_equal [r dbsize] 0
# Verify the key and its field exists in the target DB
r select 10
assert_equal [r hget myhash field1] "value1"
assert_equal [r exists myhash] 1
# Eventually the field will be expired and the key will be deleted
wait_for_condition 40 10 { [r hget myhash field1] == "" } else { fail "`field1` should be expired" }
wait_for_condition 40 10 { [r exists myhash] == 0 } else { fail "db should be empty" }
} {} {singledb:skip}
test "Test COPY hash with fields to be expired ($type)" {
r flushall
r hset h1 f1 v1 f2 v2
r hset h2 f1 v1 f2 v2 f3 v3 f4 v4 f5 v5 f6 v6 f7 v7 f8 v8 f9 v9 f10 v10 f11 v11 f12 v12 f13 v13 f14 v14 f15 v15 f16 v16 f17 v17 f18 v18
r hpexpire h1 100 NX FIELDS 1 f1
r hpexpire h2 100 NX FIELDS 18 f1 f2 f3 f4 f5 f6 f7 f8 f9 f10 f11 f12 f13 f14 f15 f16 f17 f18
r COPY h1 h1copy
r COPY h2 h2copy
assert_equal [r hget h1 f1] "v1"
assert_equal [r hget h1copy f1] "v1"
assert_equal [r exists h2] 1
assert_equal [r exists h2copy] 1
after 105
# Verify lazy expire of field in h1 and its copy
assert_equal [r hget h1 f1] ""
assert_equal [r hget h1copy f1] ""
# Verify lazy expire of field in h2 and its copy. Verify the key deleted as well.
wait_for_condition 40 10 { [r exists h2] == 0 } else { fail "`h2` should be expired" }
wait_for_condition 40 10 { [r exists h2copy] == 0 } else { fail "`h2copy` should be expired" }
} {} {singledb:skip}
test "Test COPY hash that had HFEs but not during the copy ($type)" {
r del h1
r hset h1 f1 v1 f2 v2
r hpexpire h1 1 FIELDS 1 f1
after 20
r COPY h1 h1_copy
assert_equal [r exists h1] 1
assert_equal [r exists h1_copy] 1
assert_equal [r hgetall h1_copy] {f2 v2}
r hpexpire h1_copy 1 FIELDS 1 f2
# Only active expire will delete the key
wait_for_condition 30 10 { [r exists h1_copy] == 0 } else { fail "`h1_copy` should be expired" }
}
test "Test SWAPDB hash-fields to be expired ($type)" {
r select 9
r flushall
r hset myhash field1 value1
r hpexpire myhash 50 NX FIELDS 1 field1
r swapdb 9 10
# Verify the key and its field doesn't exist in the source DB
assert_equal [r exists myhash] 0
assert_equal [r dbsize] 0
# Verify the key and its field exists in the target DB
r select 10
assert_equal [r hget myhash field1] "value1"
assert_equal [r dbsize] 1
# Eventually the field will be expired and the key will be deleted
wait_for_condition 20 10 { [r exists myhash] == 0 } else { fail "'myhash' should be expired" }
} {} {singledb:skip}
test "Test SWAPDB hash that had HFEs but not during the swap ($type)" {
r select 9
r flushall
r hset myhash f1 v1 f2 v2
r hpexpire myhash 1 NX FIELDS 1 f1
after 10
r swapdb 9 10
# Verify the key and its field doesn't exist in the source DB
assert_equal [r exists myhash] 0
assert_equal [r dbsize] 0
# Verify the key and its field exists in the target DB
r select 10
assert_equal [r hgetall myhash] {f2 v2}
assert_equal [r dbsize] 1
r hpexpire myhash 1 NX FIELDS 1 f2
# Eventually the field will be expired and the key will be deleted
wait_for_condition 20 10 { [r exists myhash] == 0 } else { fail "'myhash' should be expired" }
} {} {singledb:skip}
test "HMGET - returns empty entries if fields or hash expired ($type)" {
r debug set-active-expire 0
r del h1 h2
r hset h1 f1 v1 f2 v2 f3 v3
r hset h2 f1 v1 f2 v2 f3 v3
r hpexpire h1 10000000 NX FIELDS 1 f1
r hpexpire h1 1 NX FIELDS 2 f2 f3
r hpexpire h2 1 NX FIELDS 3 f1 f2 f3
after 5
assert_equal [r hmget h1 f1 f2 f3] {v1 {} {}}
assert_equal [r hmget h2 f1 f2 f3] {{} {} {}}
r debug set-active-expire 1
}
test "HPERSIST - Returns array if the key does not exist ($type)" {
r del myhash
assert_equal [r HPERSIST myhash FIELDS 1 a] [list $P_NO_FIELD]
assert_equal [r HPERSIST myhash FIELDS 2 a b] [list $P_NO_FIELD $P_NO_FIELD]
}
test "HPERSIST - input validation ($type)" {
# HPERSIST key <num-fields> <field [field ...]>
r del myhash
r hset myhash f1 v1 f2 v2
r hexpire myhash 1000 NX FIELDS 1 f1
assert_error {*wrong number of arguments*} {r hpersist myhash}
assert_error {*wrong number of arguments*} {r hpersist myhash FIELDS 1}
assert_equal [r hpersist myhash FIELDS 2 f1 not-exists-field] "$P_OK $P_NO_FIELD"
assert_equal [r hpersist myhash FIELDS 1 f2] "$P_NO_EXPIRY"
# <count> not match with actual number of fields
assert_error {*parameter must match the number*} {r hpersist myhash FIELDS 2 f1 f2 f3}
assert_error {*parameter must match the number*} {r hpersist myhash FIELDS 4 f1 f2 f3}
}
test "HPERSIST - verify fields with TTL are persisted ($type)" {
r del myhash
r hset myhash f1 v1 f2 v2
r hexpire myhash 20 NX FIELDS 2 f1 f2
r hpersist myhash FIELDS 2 f1 f2
after 25
assert_equal [r hget myhash f1] "v1"
assert_equal [r hget myhash f2] "v2"
assert_equal [r HTTL myhash FIELDS 2 f1 f2] "$T_NO_EXPIRY $T_NO_EXPIRY"
}
test "HTTL/HPERSIST - Test expiry commands with non-volatile hash ($type)" {
r del myhash
r hset myhash field1 value1 field2 value2 field3 value3
assert_equal [r httl myhash FIELDS 1 field1] $T_NO_EXPIRY
assert_equal [r httl myhash FIELDS 1 fieldnonexist] $E_NO_FIELD
assert_equal [r hpersist myhash FIELDS 1 field1] $P_NO_EXPIRY
assert_equal [r hpersist myhash FIELDS 1 fieldnonexist] $P_NO_FIELD
}
test {DUMP / RESTORE are able to serialize / unserialize a hash} {
r config set sanitize-dump-payload yes
r del myhash
r hmset myhash a 1 b 2 c 3
r hexpireat myhash 2524600800 fields 1 a
r hexpireat myhash 2524600801 fields 1 b
set encoded [r dump myhash]
r del myhash
r restore myhash 0 $encoded
assert_equal [lsort [r hgetall myhash]] "1 2 3 a b c"
assert_equal [r hexpiretime myhash FIELDS 3 a b c] {2524600800 2524600801 -1}
}
test {RESTORE hash that had in the past HFEs but not during the dump} {
r config set sanitize-dump-payload yes
r del myhash
r hmset myhash a 1 b 2 c 3
r hpexpire myhash 1 fields 1 a
after 10
set encoded [r dump myhash]
r del myhash
r restore myhash 0 $encoded
assert_equal [lsort [r hgetall myhash]] "2 3 b c"
r hpexpire myhash 1 fields 2 b c
wait_for_condition 30 10 { [r exists myhash] == 0 } else { fail "`myhash` should be expired" }
}
test {DUMP / RESTORE are able to serialize / unserialize a hash with TTL 0 for all fields} {
r config set sanitize-dump-payload yes
r del myhash
r hmset myhash a 1 b 2 c 3
r hexpire myhash 9999999 fields 1 a ;# make all TTLs of fields to 0
r hpersist myhash fields 1 a
assert_encoding $type myhash
set encoded [r dump myhash]
r del myhash
r restore myhash 0 $encoded
assert_equal [lsort [r hgetall myhash]] "1 2 3 a b c"
assert_equal [r hexpiretime myhash FIELDS 3 a b c] {-1 -1 -1}
}
test {HINCRBY - discards pending expired field and reset its value} {
r debug set-active-expire 0
r del h1 h2
r hset h1 f1 10 f2 2
r hset h2 f1 10
assert_equal [r HINCRBY h1 f1 2] 12
assert_equal [r HINCRBY h2 f1 2] 12
r HPEXPIRE h1 10 FIELDS 1 f1
r HPEXPIRE h2 10 FIELDS 1 f1
after 15
assert_equal [r HINCRBY h1 f1 1] 1
assert_equal [r HINCRBY h2 f1 1] 1
r debug set-active-expire 1
}
test {HINCRBY - preserve expiration time of the field} {
r del h1
r hset h1 f1 10
r hpexpire h1 20 FIELDS 1 f1
assert_equal [r HINCRBY h1 f1 2] 12
assert_range [r HPTTL h1 FIELDS 1 f1] 1 20
}
test {HINCRBYFLOAT - discards pending expired field and reset its value} {
r debug set-active-expire 0
r del h1 h2
r hset h1 f1 10 f2 2
r hset h2 f1 10
assert_equal [r HINCRBYFLOAT h1 f1 2] 12
assert_equal [r HINCRBYFLOAT h2 f1 2] 12
r HPEXPIRE h1 10 FIELDS 1 f1
r HPEXPIRE h2 10 FIELDS 1 f1
after 15
assert_equal [r HINCRBYFLOAT h1 f1 1] 1
assert_equal [r HINCRBYFLOAT h2 f1 1] 1
r debug set-active-expire 1
}
test {HINCRBYFLOAT - preserve expiration time of the field} {
r del h1
r hset h1 f1 10
r hpexpire h1 20 FIELDS 1 f1
assert_equal [r HINCRBYFLOAT h1 f1 2.5] 12.5
assert_range [r HPTTL h1 FIELDS 1 f1] 1 20
}
}
test "Statistics - Hashes with HFEs ($type)" {
r config resetstat
r flushall
# hash1: 5 fields, 3 with TTL. subexpiry incr +1
r hset myhash f1 v1 f2 v2 f3 v3 f4 v4 f5 v5
r hpexpire myhash 150 FIELDS 3 f1 f2 f3
assert_match [get_stat_subexpiry r] 1
# hash2: 5 fields, 3 with TTL. subexpiry incr +1
r hset myhash2 f1 v1 f2 v2 f3 v3 f4 v4 f5 v5
assert_match [get_stat_subexpiry r] 1
r hpexpire myhash2 100 FIELDS 3 f1 f2 f3
assert_match [get_stat_subexpiry r] 2
# hash3: 2 fields, 1 with TTL. HDEL field with TTL. subexpiry decr -1
r hset myhash3 f1 v1 f2 v2
r hpexpire myhash3 100 FIELDS 1 f2
assert_match [get_stat_subexpiry r] 3
r hdel myhash3 f2
assert_match [get_stat_subexpiry r] 2
# Expired fields of hash1 and hash2. subexpiry decr -2
wait_for_condition 50 50 {
[get_stat_subexpiry r] == 0
} else {
fail "Hash field expiry statistics failed"
}
}
r config set hash-max-listpack-entries 512
}
start_server {tags {"external:skip needs:debug"}} {
# Tests that only applies to listpack
test "Test listpack memory usage" {
r hset myhash f1 v1 f2 v2 f3 v3 f4 v4 f5 v5
r hpexpire myhash 5 FIELDS 2 f2 f4
# Just to have code coverage for the new listpack encoding
r memory usage myhash
}
test "Test listpack object encoding" {
r hset myhash f1 v1 f2 v2 f3 v3 f4 v4 f5 v5
r hpexpire myhash 5 FIELDS 2 f2 f4
# Just to have code coverage for the listpackex encoding
assert_equal [r object encoding myhash] "listpackex"
}
test "Test listpack debug listpack" {
r hset myhash f1 v1 f2 v2 f3 v3 f4 v4 f5 v5
# Just to have code coverage for the listpackex encoding
r debug listpack myhash
}
test "Test listpack converts to ht and passive expiry works" {
set prev [lindex [r config get hash-max-listpack-entries] 1]
r config set hash-max-listpack-entries 10
r debug set-active-expire 0
r hset myhash f1 v1 f2 v2 f3 v3 f4 v4 f5 v5
r hpexpire myhash 5 FIELDS 2 f2 f4
for {set i 6} {$i < 11} {incr i} {
r hset myhash f$i v$i
}
after 50
assert_equal [lsort [r hgetall myhash]] [lsort "f1 f3 f5 f6 f7 f8 f9 f10 v1 v3 v5 v6 v7 v8 v9 v10"]
r config set hash-max-listpack-entries $prev
r debug set-active-expire 1
}
test "Test listpack converts to ht and active expiry works" {
r del myhash
r debug set-active-expire 0
r hset myhash f1 v1 f2 v2 f3 v3 f4 v4 f5 v5
r hpexpire myhash 10 FIELDS 1 f1
for {set i 0} {$i < 2048} {incr i} {
r hset myhash f$i v$i
}
for {set i 0} {$i < 2048} {incr i} {
r hpexpire myhash 10 FIELDS 1 f$i
}
r debug set-active-expire 1
wait_for_condition 50 20 { [r EXISTS myhash] == 0 } else { fail "'myhash' should be expired" }
}
test "Test listpack converts to ht and active expiry works" {
r del myhash
r debug set-active-expire 0
# Check expiry works after listpack converts to ht
for {set i 0} {$i < 1024} {incr i} {
r hset myhash f1_$i v1_$i f2_$i v2_$i f3_$i v3_$i f4_$i v4_$i
r hpexpire myhash 10 FIELDS 4 f1_$i f2_$i f3_$i f4_$i
}
assert_encoding hashtable myhash
assert_equal [r hlen myhash] 4096
r debug set-active-expire 1
wait_for_condition 50 20 { [r EXISTS myhash] == 0 } else { fail "'myhash' should be expired" }
}
test "HPERSIST/HEXPIRE - Test listpack with large values" {
r del myhash
# Test with larger values to verify we successfully move fields in
# listpack when we are ordering according to TTL. This config change
# will make code to use temporary heap allocation when moving fields.
# See listpackExUpdateExpiry() for details.
r config set hash-max-listpack-value 2048
set payload1 [string repeat v3 1024]
set payload2 [string repeat v1 1024]
# Test with single item list
r hset myhash f1 $payload1
r hexpire myhash 2000 FIELDS 1 f1
assert_equal [r hget myhash f1] $payload1
r del myhash
# Test with multiple items
r hset myhash f1 $payload2 f2 v2 f3 $payload1 f4 v4
r hexpire myhash 100000 FIELDS 1 f3
r hpersist myhash FIELDS 1 f3
assert_equal [r hpersist myhash FIELDS 1 f3] $P_NO_EXPIRY
r hpexpire myhash 10 FIELDS 1 f1
after 20
assert_equal [lsort [r hgetall myhash]] [lsort "f2 f3 f4 v2 $payload1 v4"]
r config set hash-max-listpack-value 64
}
}
start_server {tags {"external:skip needs:debug"}} {
foreach type {listpack ht} {
if {$type eq "ht"} {