-
Notifications
You must be signed in to change notification settings - Fork 249
Expand file tree
/
Copy pathcommand_meta_data.h
More file actions
1329 lines (1110 loc) · 64.8 KB
/
Copy pathcommand_meta_data.h
File metadata and controls
1329 lines (1110 loc) · 64.8 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
// Auto-generated by scripts/gen_command_meta.py - do not edit.
// Source: redis/redis (version=8.8; sha=369cbad82e93e5bca133a645800fe18bb9750d2a; fetched_at=2026-05-08T16:32:28Z;
// files=425)
#pragma once
#include "command_meta.h"
namespace memtier
{
namespace command_meta
{
static const KeySpec kKeySpecs_APPEND[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_BITCOUNT[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_BITFIELD[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_BITFIELD_RO[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_BITOP[2] = {
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
{{BeginSearchType::Index, 3, nullptr, 0}, {FindKeysType::Range, -1, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_BITPOS[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_BLMOVE[2] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_BLMPOP[1] = {
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Keynum, 0, 0, 0, 0, 1, 1}},
};
static const KeySpec kKeySpecs_BLPOP[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, -2, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_BRPOP[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, -2, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_BRPOPLPUSH[2] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_BZMPOP[1] = {
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Keynum, 0, 0, 0, 0, 1, 1}},
};
static const KeySpec kKeySpecs_BZPOPMAX[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, -2, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_BZPOPMIN[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, -2, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_COPY[2] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_DECR[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_DECRBY[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_DEL[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, -1, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_DELEX[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_DIGEST[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_DUMP[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_EVAL[1] = {
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Keynum, 0, 0, 0, 0, 1, 1}},
};
static const KeySpec kKeySpecs_EVAL_RO[1] = {
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Keynum, 0, 0, 0, 0, 1, 1}},
};
static const KeySpec kKeySpecs_EVALSHA[1] = {
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Keynum, 0, 0, 0, 0, 1, 1}},
};
static const KeySpec kKeySpecs_EVALSHA_RO[1] = {
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Keynum, 0, 0, 0, 0, 1, 1}},
};
static const KeySpec kKeySpecs_EXISTS[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, -1, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_EXPIRE[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_EXPIREAT[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_EXPIRETIME[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_FCALL[1] = {
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Keynum, 0, 0, 0, 0, 1, 1}},
};
static const KeySpec kKeySpecs_FCALL_RO[1] = {
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Keynum, 0, 0, 0, 0, 1, 1}},
};
static const KeySpec kKeySpecs_GCRA[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_GCRASETVALUE[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_GEOADD[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_GEODIST[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_GEOHASH[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_GEOPOS[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_GEORADIUS[3] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
{{BeginSearchType::Keyword, 0, "STORE", 6}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
{{BeginSearchType::Keyword, 0, "STOREDIST", 6}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_GEORADIUS_RO[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_GEORADIUSBYMEMBER[3] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
{{BeginSearchType::Keyword, 0, "STORE", 5}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
{{BeginSearchType::Keyword, 0, "STOREDIST", 5}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_GEORADIUSBYMEMBER_RO[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_GEOSEARCH[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_GEOSEARCHSTORE[2] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_GET[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_GETBIT[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_GETDEL[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_GETEX[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_GETRANGE[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_GETSET[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HDEL[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HEXISTS[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HEXPIRE[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HEXPIREAT[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HEXPIRETIME[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HGET[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HGETALL[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HGETDEL[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HGETEX[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HINCRBY[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HINCRBYFLOAT[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HKEYS[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HLEN[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HMGET[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HMSET[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HPERSIST[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HPEXPIRE[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HPEXPIREAT[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HPEXPIRETIME[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HPTTL[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HRANDFIELD[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HSCAN[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HSET[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HSETEX[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HSETNX[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HSTRLEN[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HTTL[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_HVALS[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_INCR[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_INCRBY[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_INCRBYFLOAT[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_LCS[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 1, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_LINDEX[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_LINSERT[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_LLEN[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_LMOVE[2] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_LMPOP[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Keynum, 0, 0, 0, 0, 1, 1}},
};
static const KeySpec kKeySpecs_LPOP[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_LPOS[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_LPUSH[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_LPUSHX[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_LRANGE[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_LREM[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_LSET[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_LTRIM[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_MEMORY_USAGE[1] = {
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_MGET[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, -1, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_MIGRATE[2] = {
{{BeginSearchType::Index, 3, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
{{BeginSearchType::Keyword, 0, "KEYS", -2}, {FindKeysType::Range, -1, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_MOVE[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_MSET[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, -1, 2, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_MSETEX[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Keynum, 0, 0, 0, 0, 1, 2}},
};
static const KeySpec kKeySpecs_MSETNX[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, -1, 2, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_OBJECT_ENCODING[1] = {
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_OBJECT_FREQ[1] = {
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_OBJECT_IDLETIME[1] = {
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_OBJECT_REFCOUNT[1] = {
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_PERSIST[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_PEXPIRE[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_PEXPIREAT[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_PEXPIRETIME[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_PFADD[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_PFCOUNT[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, -1, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_PFDEBUG[1] = {
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_PFMERGE[2] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, -1, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_PSETEX[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_PTTL[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_RENAME[2] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_RENAMENX[2] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_RESTORE_ASKING[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_RESTORE[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_RPOP[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_RPOPLPUSH[2] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_RPUSH[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_RPUSHX[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SADD[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SCARD[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SDIFF[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, -1, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SDIFFSTORE[2] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, -1, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SET[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SETBIT[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SETEX[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SETNX[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SETRANGE[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SINTER[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, -1, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SINTERCARD[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Keynum, 0, 0, 0, 0, 1, 1}},
};
static const KeySpec kKeySpecs_SINTERSTORE[2] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, -1, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SISMEMBER[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SMEMBERS[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SMISMEMBER[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SMOVE[2] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SORT[3] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
{{BeginSearchType::Unknown, 0, nullptr, 0}, {FindKeysType::Unknown, 0, 0, 0, 0, 0, 0}},
{{BeginSearchType::Unknown, 0, nullptr, 0}, {FindKeysType::Unknown, 0, 0, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SORT_RO[2] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
{{BeginSearchType::Unknown, 0, nullptr, 0}, {FindKeysType::Unknown, 0, 0, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SPOP[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SPUBLISH[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SRANDMEMBER[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SREM[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SSCAN[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SSUBSCRIBE[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, -1, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_STRLEN[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SUBSTR[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SUNION[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, -1, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SUNIONSTORE[2] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, -1, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_SUNSUBSCRIBE[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, -1, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_TOUCH[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, -1, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_TTL[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_TYPE[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_UNLINK[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, -1, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_WATCH[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, -1, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XACK[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XACKDEL[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XADD[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XAUTOCLAIM[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XCFGSET[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XCLAIM[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XDEL[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XDELEX[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XGROUP_CREATE[1] = {
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XGROUP_CREATECONSUMER[1] = {
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XGROUP_DELCONSUMER[1] = {
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XGROUP_DESTROY[1] = {
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XGROUP_SETID[1] = {
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XIDMPRECORD[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XINFO_CONSUMERS[1] = {
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XINFO_GROUPS[1] = {
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XINFO_STREAM[1] = {
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XLEN[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XNACK[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XPENDING[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XRANGE[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XREAD[1] = {
{{BeginSearchType::Keyword, 0, "STREAMS", 1}, {FindKeysType::Range, -1, 1, 2, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XREADGROUP[1] = {
{{BeginSearchType::Keyword, 0, "STREAMS", 4}, {FindKeysType::Range, -1, 1, 2, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XREVRANGE[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XSETID[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_XTRIM[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_ZADD[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_ZCARD[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_ZCOUNT[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_ZDIFF[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Keynum, 0, 0, 0, 0, 1, 1}},
};
static const KeySpec kKeySpecs_ZDIFFSTORE[2] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Keynum, 0, 0, 0, 0, 1, 1}},
};
static const KeySpec kKeySpecs_ZINCRBY[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_ZINTER[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Keynum, 0, 0, 0, 0, 1, 1}},
};
static const KeySpec kKeySpecs_ZINTERCARD[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Keynum, 0, 0, 0, 0, 1, 1}},
};
static const KeySpec kKeySpecs_ZINTERSTORE[2] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Keynum, 0, 0, 0, 0, 1, 1}},
};
static const KeySpec kKeySpecs_ZLEXCOUNT[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_ZMPOP[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Keynum, 0, 0, 0, 0, 1, 1}},
};
static const KeySpec kKeySpecs_ZMSCORE[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_ZPOPMAX[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_ZPOPMIN[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_ZRANDMEMBER[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_ZRANGE[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_ZRANGEBYLEX[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_ZRANGEBYSCORE[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_ZRANGESTORE[2] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_ZRANK[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_ZREM[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_ZREMRANGEBYLEX[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_ZREMRANGEBYRANK[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_ZREMRANGEBYSCORE[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_ZREVRANGE[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_ZREVRANGEBYLEX[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_ZREVRANGEBYSCORE[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_ZREVRANK[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_ZSCAN[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_ZSCORE[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
};
static const KeySpec kKeySpecs_ZUNION[1] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Keynum, 0, 0, 0, 0, 1, 1}},
};
static const KeySpec kKeySpecs_ZUNIONSTORE[2] = {
{{BeginSearchType::Index, 1, nullptr, 0}, {FindKeysType::Range, 0, 1, 0, 0, 0, 0}},
{{BeginSearchType::Index, 2, nullptr, 0}, {FindKeysType::Keynum, 0, 0, 0, 0, 1, 1}},
};
static const CommandSpec kCommands[] = {
{"ACL CAT", -2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"ACL DELUSER", -3, false, false, 0, nullptr, ReplyShape::NotMissable},
{"ACL DRYRUN", -4, false, false, 0, nullptr, ReplyShape::NotMissable},
{"ACL GENPASS", -2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"ACL GETUSER", 3, false, false, 0, nullptr, ReplyShape::SingleNullBulk},
{"ACL HELP", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"ACL LIST", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"ACL LOAD", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"ACL LOG", -2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"ACL SAVE", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"ACL SETUSER", -3, false, false, 0, nullptr, ReplyShape::NotMissable},
{"ACL USERS", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"ACL WHOAMI", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"ACL", -2, false, false, 0, nullptr, ReplyShape::Unknown},
{"APPEND", 3, false, false, 1, kKeySpecs_APPEND, ReplyShape::NotMissable},
{"ASKING", 1, false, false, 0, nullptr, ReplyShape::NotMissable},
{"AUTH", -2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"BGREWRITEAOF", 1, false, false, 0, nullptr, ReplyShape::NotMissable},
{"BGSAVE", -1, false, false, 0, nullptr, ReplyShape::NotMissable},
{"BITCOUNT", -2, false, true, 1, kKeySpecs_BITCOUNT, ReplyShape::NotMissable},
{"BITFIELD", -2, false, false, 1, kKeySpecs_BITFIELD, ReplyShape::ArrayPerElementNulls},
{"BITFIELD_RO", -2, false, true, 1, kKeySpecs_BITFIELD_RO, ReplyShape::NotMissable},
{"BITOP", -4, false, false, 2, kKeySpecs_BITOP, ReplyShape::NotMissable},
{"BITPOS", -3, false, true, 1, kKeySpecs_BITPOS, ReplyShape::NotMissable},
{"BLMOVE", 6, false, false, 2, kKeySpecs_BLMOVE, ReplyShape::SingleNullBulk},
{"BLMPOP", -5, false, false, 1, kKeySpecs_BLMPOP, ReplyShape::SingleNullBulk},
{"BLPOP", -3, false, false, 1, kKeySpecs_BLPOP, ReplyShape::SingleNullBulk},
{"BRPOP", -3, false, false, 1, kKeySpecs_BRPOP, ReplyShape::SingleNullBulk},
{"BRPOPLPUSH", 4, false, false, 2, kKeySpecs_BRPOPLPUSH, ReplyShape::SingleNullBulk},
{"BZMPOP", -5, false, false, 1, kKeySpecs_BZMPOP, ReplyShape::SingleNullBulk},
{"BZPOPMAX", -3, false, false, 1, kKeySpecs_BZPOPMAX, ReplyShape::SingleNullBulk},
{"BZPOPMIN", -3, false, false, 1, kKeySpecs_BZPOPMIN, ReplyShape::SingleNullBulk},
{"CLIENT CACHING", 3, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLIENT GETNAME", 2, false, false, 0, nullptr, ReplyShape::SingleNullBulk},
{"CLIENT GETREDIR", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLIENT HELP", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLIENT ID", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLIENT INFO", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLIENT KILL", -3, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLIENT LIST", -2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLIENT NO-EVICT", 3, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLIENT NO-TOUCH", 3, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLIENT PAUSE", -3, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLIENT REPLY", 3, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLIENT SETINFO", 4, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLIENT SETNAME", 3, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLIENT TRACKING", -3, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLIENT TRACKINGINFO", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLIENT UNBLOCK", -3, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLIENT UNPAUSE", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLIENT", -2, false, false, 0, nullptr, ReplyShape::Unknown},
{"CLUSTER ADDSLOTS", -3, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER ADDSLOTSRANGE", -4, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER BUMPEPOCH", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER COUNT-FAILURE-REPORTS", 3, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER COUNTKEYSINSLOT", 3, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER DELSLOTS", -3, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER DELSLOTSRANGE", -4, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER FAILOVER", -2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER FLUSHSLOTS", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER FORGET", 3, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER GETKEYSINSLOT", 4, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER HELP", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER INFO", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER KEYSLOT", 3, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER LINKS", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER MEET", -4, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER MIGRATION", -4, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER MYID", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER MYSHARDID", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER NODES", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER REPLICAS", 3, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER REPLICATE", 3, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER RESET", -2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER SAVECONFIG", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER SET-CONFIG-EPOCH", 3, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER SETSLOT", -4, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER SHARDS", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER SLAVES", 3, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER SLOT-STATS", -4, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER SLOTS", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER SYNCSLOTS", -3, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CLUSTER", -2, false, false, 0, nullptr, ReplyShape::Unknown},
{"COMMAND COUNT", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"COMMAND DOCS", -2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"COMMAND GETKEYS", -3, false, false, 0, nullptr, ReplyShape::NotMissable},
{"COMMAND GETKEYSANDFLAGS", -3, false, false, 0, nullptr, ReplyShape::NotMissable},
{"COMMAND HELP", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"COMMAND INFO", -2, false, false, 0, nullptr, ReplyShape::ArrayPerElementNulls},
{"COMMAND LIST", -2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"COMMAND", -1, false, false, 0, nullptr, ReplyShape::Unknown},
{"CONFIG GET", -3, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CONFIG HELP", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CONFIG RESETSTAT", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CONFIG REWRITE", 2, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CONFIG SET", -4, false, false, 0, nullptr, ReplyShape::NotMissable},
{"CONFIG", -2, false, false, 0, nullptr, ReplyShape::Unknown},
{"COPY", -3, false, false, 2, kKeySpecs_COPY, ReplyShape::NotMissable},
{"DBSIZE", 1, false, true, 0, nullptr, ReplyShape::NotMissable},
{"DEBUG", -2, false, false, 0, nullptr, ReplyShape::Unknown},
{"DECR", 2, false, false, 1, kKeySpecs_DECR, ReplyShape::NotMissable},