yo-resp 0.3.25

The RESP2 and RESP3 codec: borrowed request frames in, wire bytes out, no allocation on the hot path.
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
6846
6847
6848
6849
6850
6851
6852
6853
6854
6855
6856
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
6873
6874
6875
6876
6877
6878
//! The command table: what each command is called, how many arguments it
//! takes, where its keys are, and what `COMMAND` reports about it.
//!
//! Every field here was read out of a running Redis 8.8 with `COMMAND INFO`
//! rather than written from the documentation, because this is the table a
//! client library builds its own routing from. A cluster aware client asks
//! `COMMAND` where the keys are and then decides which node to send a command
//! to, so an arity or a key position that is off by one does not produce a
//! wrong error message, it produces a client that sends `MSET` to the wrong
//! shard. The summaries are ours, since those are the one field nobody parses.
//!
//! `cargo xtask check` compares this table against `commands.toml` in both
//! directions, so a command cannot be dispatched without a storage plan and
//! cannot claim `wire = "verified"` without an entry here.

use super::Args;
use yo_common::parse_i64;

/// Everything `COMMAND` has to be able to say about one command.
#[derive(Debug, Clone, Copy)]
pub struct Spec {
    /// The name, lower case, which is how `COMMAND` reports it whatever case
    /// the client used.
    pub name: &'static str,
    /// Redis's arity: a positive number is exact, a negative one is a minimum
    /// of its magnitude, and both count the command name itself.
    pub arity: i32,
    /// The command flags, in the order `COMMAND INFO` lists them.
    pub flags: &'static [&'static str],
    /// The first argument that is a key, or zero when there are none.
    pub first_key: i32,
    /// The last argument that is a key, negative counting back from the end.
    pub last_key: i32,
    /// How far apart the keys are, for the commands that take pairs.
    pub step: i32,
    /// The ACL categories, which are what `COMMAND LIST FILTERBY ACLCAT` reads.
    pub acl: &'static [&'static str],
    /// The Redis this command first appeared in.
    pub since: &'static str,
    /// The cost, in the shape `COMMAND DOCS` uses.
    pub complexity: &'static str,
    /// One line about what it does, in our words.
    pub summary: &'static str,
    /// The group in `commands.toml`, which is how the two files are compared.
    pub group: &'static str,
}

/// The four transaction commands Redis counts as fast, which is all of them
/// except `EXEC`, whose cost is whatever it was asked to run.
const AC_TX_FAST: &[&str] = &["@fast", "@transaction"];
/// The six subscribe and unsubscribe commands, none of which Redis counts as
/// fast because all of them take a list.
const AC_PUBSUB_SLOW: &[&str] = &["@pubsub", "@slow"];
/// The two publishes, which Redis does count as fast.
const AC_PUBSUB_FAST: &[&str] = &["@pubsub", "@fast"];
/// Read only, fast, one key at argument one, which is most of the getters.
const READ_FAST: &[&str] = &["readonly", "fast"];
/// A write that allocates, fast, one key at argument one.
const WRITE_FAST_OOM: &[&str] = &["write", "denyoom", "fast"];
/// A write that allocates and is not counted as fast.
const WRITE_OOM: &[&str] = &["write", "denyoom"];
/// A write that allocates and is not for ordinary clients, which is `PFDEBUG`.
const WRITE_OOM_ADMIN: &[&str] = &["write", "denyoom", "admin"];
/// The read side categories.
const AC_READ_FAST: &[&str] = &["@read", "@string", "@fast"];
/// The bitmap read side, for the two that answer without walking the value.
const AC_BIT_READ_FAST: &[&str] = &["@read", "@bitmap", "@fast"];
/// The bitmap read side for the ones that walk it.
const AC_BIT_READ: &[&str] = &["@read", "@bitmap", "@slow"];
/// The bitmap write side. Redis counts none of these as fast, `SETBIT` included.
const AC_BIT_WRITE: &[&str] = &["@write", "@bitmap", "@slow"];

/// The sketch write side, which Redis counts as fast for `PFADD` alone.
const AC_HLL_WRITE_FAST: &[&str] = &["@write", "@hyperloglog", "@fast"];
/// The sketch write side for the ones that walk every register.
const AC_HLL_WRITE: &[&str] = &["@write", "@hyperloglog", "@slow"];
/// The sketch read side, which is `PFCOUNT` and only `PFCOUNT`.
const AC_HLL_READ: &[&str] = &["@read", "@hyperloglog", "@slow"];
/// The two that are not for clients, and are tagged so an ACL can say so.
const AC_HLL_ADMIN: &[&str] = &["@hyperloglog", "@admin", "@slow", "@dangerous"];
/// The read side categories for the ones that walk the value.
const AC_READ_SLOW: &[&str] = &["@read", "@string", "@slow"];
/// The write side categories.
const AC_WRITE_FAST: &[&str] = &["@write", "@string", "@fast"];
/// The write side categories for the ones that are not counted as fast.
const AC_WRITE_SLOW: &[&str] = &["@write", "@string", "@slow"];
/// A write that frees rather than allocates, so Redis does not mark it denyoom.
const WRITE_FAST: &[&str] = &["write", "fast"];
/// The set read side, for the ones that answer without walking the members.
const AC_SET_READ_FAST: &[&str] = &["@read", "@set", "@fast"];
/// The set read side for the ones that walk the members.
const AC_SET_READ_SLOW: &[&str] = &["@read", "@set", "@slow"];
/// The set write side.
const AC_SET_WRITE_FAST: &[&str] = &["@write", "@set", "@fast"];
/// The set write side for the ones that walk whole sets to decide what to
/// write, which is the whole `*STORE` family.
const AC_SET_WRITE_SLOW: &[&str] = &["@write", "@set", "@slow"];
/// The hash read side, for the ones that answer without walking the fields.
const AC_HASH_READ_FAST: &[&str] = &["@read", "@hash", "@fast"];
/// The hash read side for the ones that walk the fields.
const AC_HASH_READ_SLOW: &[&str] = &["@read", "@hash", "@slow"];
/// The hash write side.
const AC_HASH_WRITE_FAST: &[&str] = &["@write", "@hash", "@fast"];
/// `HIMPORT`, which is a container and so has no write category of its own. The
/// write flags and the key live on its `SET` subcommand, which the table does
/// not carry any more than it carries `OBJECT ENCODING`.
const AC_HASH_SLOW: &[&str] = &["@hash", "@slow"];
/// Read only and not counted as fast, which is every list read that walks.
const READ_SLOW: &[&str] = &["readonly"];
/// A write that is not counted as fast and does not allocate, which on the list
/// side is `LREM` and `LTRIM` and nothing else.
const WRITE_SLOW: &[&str] = &["write"];
/// The list read side, for the two that answer without walking the elements.
const AC_LIST_READ_FAST: &[&str] = &["@read", "@list", "@fast"];
/// The list read side for the ones that walk.
const AC_LIST_READ_SLOW: &[&str] = &["@read", "@list", "@slow"];
/// The list write side, which is the pushes and the pops. Redis counts a push
/// as fast even though it can split a chunk, because the split is amortised.
const AC_LIST_WRITE_FAST: &[&str] = &["@write", "@list", "@fast"];
/// The list write side for the ones whose cost is the length of the list.
const AC_LIST_WRITE_SLOW: &[&str] = &["@write", "@list", "@slow"];
/// The five that can wait, which carry a category of their own so that an ACL
/// can say "this user may not park a connection" without naming five commands.
const AC_LIST_WRITE_BLOCKING: &[&str] = &["@write", "@list", "@slow", "@blocking"];
/// The sorted set read side, for the ones that answer without walking members.
const AC_ZSET_READ_FAST: &[&str] = &["@read", "@sortedset", "@fast"];
/// The sorted set read side for the ones that walk members.
const AC_ZSET_READ_SLOW: &[&str] = &["@read", "@sortedset", "@slow"];
/// The sorted set write side.
const AC_ZSET_WRITE_FAST: &[&str] = &["@write", "@sortedset", "@fast"];
/// The sorted set write side for the ones whose cost is the size of the window
/// they touch, which is the removals and `ZRANGESTORE`.
const AC_ZSET_WRITE_SLOW: &[&str] = &["@write", "@sortedset", "@slow"];
/// The two sorted set pops that can wait, which Redis counts as fast because
/// each of them takes one member.
const AC_ZSET_BLOCKING_FAST: &[&str] = &["@write", "@sortedset", "@fast", "@blocking"];
/// And `BZMPOP`, whose cost is the number of keys named and the count popped.
const AC_ZSET_BLOCKING_SLOW: &[&str] = &["@write", "@sortedset", "@slow", "@blocking"];
/// The array read side, for the ones whose cost is the number of indices named
/// and not the size of the array.
/// The geo read side. Redis counts none of these as fast, not even GEODIST,
/// which is two probes and some arithmetic.
const AC_GEO_READ: &[&str] = &["@read", "@geo", "@slow"];
/// The geo write side, which is GEOADD and the four forms that can store.
const AC_GEO_WRITE: &[&str] = &["@write", "@geo", "@slow"];
/// No ACL categories at all, which is what the vector set module registers.
///
/// It is the only group here with an empty list and it is not an omission. The
/// module never calls the categories in, so a real server has no `vectorset`
/// category to name, `ACL CAT vectorset` is an unknown category there, and
/// `COMMAND LIST FILTERBY ACLCAT read` does not answer `VSIM`. Inventing a
/// category would make a rule written against this server mean something it
/// does not mean against a real one, which is the one thing a compatible ACL
/// must not do, and it would do it in the direction that grants access rather
/// than the direction that refuses it.
const AC_NONE: &[&str] = &[];
/// A vector set read, with the `module` flag every vector set command carries
/// for the same reason the JSON and Bloom ones do.
const VECTOR_READ: &[&str] = &["readonly", "module"];
/// A vector set read the module also marks fast, which is the ones that answer
/// about one element without searching.
const VECTOR_READ_FAST: &[&str] = &["readonly", "module", "fast"];
/// `VADD`, which is the one command here that can grow the set.
const VECTOR_WRITE_OOM: &[&str] = &["write", "denyoom", "module"];
/// `VREM`, which only ever frees, so the module does not mark it denyoom.
const VECTOR_WRITE: &[&str] = &["write", "module"];
/// `VSETATTR`, which the module marks fast and, though it takes a string off
/// the wire, does not mark denyoom.
const VECTOR_WRITE_FAST: &[&str] = &["write", "module", "fast"];
/// The one category nearly every search command is in. The module registers
/// `@search` on its own for most of them rather than pairing it with `@read` or
/// `@write` the way RedisJSON does, which is the module's own answer to
/// `COMMAND INFO` and is copied rather than tidied up.
const AC_SEARCH: &[&str] = &["@search"];
/// `FT.DROPINDEX` and the two spellings of it, which the module puts in the
/// dangerous category because dropping an index with `DD` deletes the documents
/// it followed.
const AC_SEARCH_DROP: &[&str] = &["@write", "@slow", "@dangerous", "@search"];
/// `FT._DROPIFX`, which is the same command with a shorter list. The module
/// leaves the slow and dangerous categories off this one and there is no
/// reading of it that makes it less dangerous than the others.
const AC_SEARCH_WRITE: &[&str] = &["@write", "@search"];
/// `FT._LIST`, which the module puts in `@admin` because listing every index is
/// a question about the server rather than about anything in it.
const AC_SEARCH_LIST: &[&str] = &["@admin", "@slow", "@search"];
/// `FT.CONFIG`, which is a question about the server rather than about an index
/// and is the only search command the module leaves the `@slow` category off
/// while still calling it admin.
const AC_SEARCH_ADMIN: &[&str] = &["@admin", "@search"];
/// `_FT.DEBUG`, which the module calls dangerous as well as admin because what
/// it answers is the module's own bookkeeping and nothing about it is promised
/// to stay the same shape between versions.
const AC_SEARCH_DEBUG: &[&str] = &["@admin", "@slow", "@dangerous", "@search"];
/// `FT.TAGVALS`, the one search read the module bothers to put in `@read` as
/// well, and the only one it calls dangerous without also calling it a write.
/// Both are fair: the whole of a tag index goes into one reply and there is no
/// way to ask for less of it.
const AC_SEARCH_TAGS: &[&str] = &["@read", "@slow", "@dangerous", "@search"];
/// The two suggestion reads. These are the search commands that work on a real
/// key, so the module pairs `@search` with the category the key access deserves
/// rather than leaving it on its own.
const AC_SEARCH_READ: &[&str] = &["@read", "@search"];
/// A search read, with the `module` flag every search command carries for the
/// same reason the JSON and vector set ones do.
const SEARCH_READ: &[&str] = &["readonly", "module"];
/// A search write that takes a schema or an alias off the wire.
const SEARCH_WRITE_OOM: &[&str] = &["write", "denyoom", "module"];
/// A search write that only ever frees, which is dropping an index or an alias.
const SEARCH_WRITE: &[&str] = &["write", "module"];
/// The JSON read side. Two categories and no speed one, which is RedisJSON's
/// own answer to `COMMAND INFO` and not an omission: the module registers
/// `@read @json` and leaves it there.
const AC_JSON_READ: &[&str] = &["@read", "@json"];
/// The JSON write side, the same way.
const AC_JSON_WRITE: &[&str] = &["@write", "@json"];
/// A JSON read, with the `module` flag every RedisJSON command carries. It is
/// there because the command came from a module on a real server, and a client
/// that reads the flags off `COMMAND INFO` should see the same list from both.
const JSON_READ: &[&str] = &["readonly", "module"];
/// A JSON write that does not grow the document.
const JSON_WRITE: &[&str] = &["write", "module"];
/// A JSON write that does, which is the four that take a value off the wire.
const JSON_WRITE_OOM: &[&str] = &["write", "denyoom", "module"];
/// A JSON read whose key is not where the arity says it is, which is
/// `JSON.DEBUG` and its subcommand.
const JSON_READ_MOVABLE: &[&str] = &["readonly", "module", "movablekeys"];
/// The Bloom filter read side. RedisBloom marks all of these `@fast` on top of
/// the two categories, including the ones that walk the whole filter, which is
/// the module's own answer to `COMMAND INFO` and is copied rather than judged.
const AC_BLOOM_READ: &[&str] = &["@read", "@bloom"];
/// The two reads the module also puts in `@fast` as a category of its own,
/// which is `BF.INFO` and `BF.CARD`. Neither reads the bits at all.
const AC_BLOOM_READ_FAST: &[&str] = &["@read", "@fast", "@bloom"];
/// The Bloom filter write side.
const AC_BLOOM_WRITE: &[&str] = &["@write", "@bloom"];
/// `BF.RESERVE`, which is the one write that does no hashing.
const AC_BLOOM_WRITE_FAST: &[&str] = &["@write", "@fast", "@bloom"];
/// A Bloom read, with the `module` flag every RedisBloom command carries for
/// the same reason the JSON ones do.
const BLOOM_READ: &[&str] = &["readonly", "module", "fast"];
/// A Bloom write. All of them can grow the filter, `BF.LOADCHUNK` included, so
/// all of them deny out of memory.
const BLOOM_WRITE: &[&str] = &["write", "denyoom", "module"];
/// The cuckoo filter read side, which is the same three flags under a category
/// of its own. `CF.COMPACT` is in here too, because the module has it down as a
/// read even though it moves fingerprints between filters.
const AC_CUCKOO_READ: &[&str] = &["@read", "@cuckoo"];
/// The one read the module also calls fast, which is `CF.INFO`.
const AC_CUCKOO_READ_FAST: &[&str] = &["@read", "@fast", "@cuckoo"];
/// The cuckoo filter write side.
const AC_CUCKOO_WRITE: &[&str] = &["@write", "@cuckoo"];
/// `CF.RESERVE`, which is the one write that does no hashing.
const AC_CUCKOO_WRITE_FAST: &[&str] = &["@write", "@fast", "@cuckoo"];
/// A cuckoo read, with the `module` flag the whole family carries.
const CUCKOO_READ: &[&str] = &["readonly", "module", "fast"];
/// A cuckoo write, all of which can grow the chain.
const CUCKOO_WRITE: &[&str] = &["write", "denyoom", "module"];
/// `CF.DEL`, the one write that only ever frees a slot and so does not deny out
/// of memory.
const CUCKOO_DELETE: &[&str] = &["write", "module", "fast"];
/// The count min sketch read side. The module does not call either of these
/// fast in the flags even though it puts `CMS.INFO` in the fast category, which
/// is a disagreement in RedisBloom's own table and is copied as it stands.
const AC_CMS_READ: &[&str] = &["@read", "@cms"];
/// `CMS.INFO`, which is the one read in the fast category.
const AC_CMS_READ_FAST: &[&str] = &["@read", "@fast", "@cms"];
/// The count min sketch write side.
const AC_CMS_WRITE: &[&str] = &["@write", "@cms"];
/// The two constructors, which allocate and then do nothing.
const AC_CMS_WRITE_FAST: &[&str] = &["@write", "@fast", "@cms"];
/// A count min sketch read, which carries `module` and not `fast`.
const CMS_READ: &[&str] = &["readonly", "module"];
/// A count min sketch write. The table never grows after it is made, so the two
/// that can allocate are the constructors, and all four deny out of memory
/// because the module marks all four.
const CMS_WRITE: &[&str] = &["write", "denyoom", "module"];
/// The top k read side, which the module does not call fast except for the one
/// that reads four numbers off the header.
const AC_TOPK_READ: &[&str] = &["@read", "@topk"];
/// `TOPK.INFO`.
const AC_TOPK_READ_FAST: &[&str] = &["@read", "@fast", "@topk"];
/// The top k write side, which is the two that count things.
const AC_TOPK_WRITE: &[&str] = &["@write", "@topk"];
/// `TOPK.RESERVE`, the one write that only allocates.
const AC_TOPK_WRITE_FAST: &[&str] = &["@write", "@fast", "@topk"];
/// A top k read, which carries `module` and not `fast`.
const TOPK_READ: &[&str] = &["readonly", "module"];
/// A top k write. The table never grows after it is made, so the only one that
/// can allocate is the constructor, and all three deny out of memory because the
/// module marks all three.
const TOPK_WRITE: &[&str] = &["write", "denyoom", "module"];
/// The t digest read side for the ones that answer off the header or off one
/// sweep of the centroids, which the module calls fast and which is all of them
/// bar the trimmed mean.
const AC_TDIGEST_READ_FAST: &[&str] = &["@read", "@fast", "@tdigest"];
/// `TDIGEST.TRIMMED_MEAN`, the one read the module does not call fast.
const AC_TDIGEST_READ: &[&str] = &["@read", "@tdigest"];
/// The t digest write side for the two that only shape a digest.
const AC_TDIGEST_WRITE_FAST: &[&str] = &["@write", "@fast", "@tdigest"];
/// The two that move weight around.
const AC_TDIGEST_WRITE: &[&str] = &["@write", "@tdigest"];
/// A t digest read, which carries `module` and not `fast`.
const TDIGEST_READ: &[&str] = &["readonly", "module"];
/// A t digest write. All four deny out of memory because all four can end up
/// asking for a set of centroids.
const TDIGEST_WRITE: &[&str] = &["write", "denyoom", "module"];
/// `TDIGEST.MERGE`, whose keys are behind a count and so cannot be found by the
/// first, last and step the rest of the table uses.
const TDIGEST_MERGE: &[&str] = &["write", "denyoom", "module", "movablekeys"];
/// The time series read side for the two that answer off the header or off the
/// last sample, which the module calls fast.
const AC_TS_READ_FAST: &[&str] = &["@read", "@fast", "@timeseries"];
/// The time series write side, which is everything that puts a sample in or
/// changes what a series does with one.
const AC_TS_WRITE: &[&str] = &["@write", "@timeseries"];
/// The time series read side for the two that walk a span, which the module
/// does not call fast.
const AC_TS_READ: &[&str] = &["@read", "@timeseries"];
/// `TS.CREATE`, the one write the module calls fast, because making an empty
/// series is an allocation and nothing else.
const AC_TS_WRITE_FAST: &[&str] = &["@write", "@fast", "@timeseries"];
/// A time series read, which carries `module` and not `fast` whatever the ACL
/// category says. That disagreement is RedisTimeSeries's own and is copied as it
/// stands, the same way the count min sketch one is.
const TS_READ: &[&str] = &["readonly", "module"];
/// The two joined reads, which carry their keys behind a count and so cannot be
/// described by the first, last and step triple.
const TS_READ_MOVABLE: &[&str] = &["readonly", "module", "movablekeys"];
/// A time series write, all of which can ask for another chunk.
const TS_WRITE: &[&str] = &["write", "denyoom", "module"];
/// `TS.DEL`, the one write that only ever frees samples and so does not deny out
/// of memory.
const TS_DELETE: &[&str] = &["write", "module"];
/// `TS.CREATERULE`, which is the one time series write that says `fast` in the
/// flags rather than only in the ACL categories, and the one that never asks for
/// room of its own.
const TS_RULE: &[&str] = &["write", "module", "fast"];
/// The graph read side, for the ones that answer without walking the plane.
const AC_GRAPH_READ_FAST: &[&str] = &["@read", "@graph", "@fast"];
/// The graph read side for the ones that walk it.
const AC_GRAPH_READ_SLOW: &[&str] = &["@read", "@graph", "@slow"];
/// The graph write side, all of which are a probe and a run.
const AC_GRAPH_WRITE_FAST: &[&str] = &["@write", "@graph", "@fast"];
const AC_ARRAY_READ_FAST: &[&str] = &["@read", "@array", "@fast"];
/// The array read side for `ARGETRANGE`, which answers once per position in the
/// range and so costs the range rather than the population.
const AC_ARRAY_READ_SLOW: &[&str] = &["@read", "@array", "@slow"];
/// The array write side.
const AC_ARRAY_WRITE_FAST: &[&str] = &["@write", "@array", "@fast"];
/// The array write side for `ARDELRANGE`, the one array command Redis does not
/// mark fast.
const AC_ARRAY_WRITE_SLOW: &[&str] = &["@write", "@array", "@slow"];
/// The stream read side, for the ones that answer without walking entries.
const AC_STREAM_READ_FAST: &[&str] = &["@read", "@stream", "@fast"];
/// The stream read side for the ranges, whose cost is what they return.
const AC_STREAM_READ_SLOW: &[&str] = &["@read", "@stream", "@slow"];
/// The stream write side, which is everything that appends, deletes or moves an
/// entry between pending lists.
const AC_STREAM_WRITE_FAST: &[&str] = &["@write", "@stream", "@fast"];
/// The stream write side for `XTRIM`, whose cost is what it removes.
const AC_STREAM_WRITE_SLOW: &[&str] = &["@write", "@stream", "@slow"];
/// `XREAD`, which waits and does not write.
const AC_STREAM_BLOCKING_READ: &[&str] = &["@read", "@stream", "@slow", "@blocking"];
/// `XREADGROUP`, which waits and does write, since handing an entry to a
/// consumer puts it on that consumer's pending list.
const AC_STREAM_BLOCKING_WRITE: &[&str] = &["@write", "@stream", "@slow", "@blocking"];
/// `XGROUP` and `XINFO`, whose keys are on the subcommand and whose categories
/// are therefore only the container's.
const AC_STREAM_CONTAINER: &[&str] = &["@slow"];
/// The two stream reads, whose keys come after `STREAMS` and are half of what
/// follows it, so nothing positional can find them.
const READ_BLOCKING_MOVABLE: &[&str] = &["readonly", "blocking", "movablekeys"];
/// The same for `XREADGROUP`, which is a write.
const WRITE_BLOCKING_MOVABLE: &[&str] = &["write", "blocking", "movablekeys"];
/// Read only and not counted as fast, for a command whose keys are counted
/// rather than positioned, so a client has to read the key specs to route it.
const READ_MOVABLE: &[&str] = &["readonly", "movablekeys"];
/// The same for a write, which is the three store forms.
const WRITE_MOVABLE: &[&str] = &["write", "denyoom", "movablekeys"];
/// `MIGRATE`, which is the one movable key write that is not `denyoom`.
///
/// It only ever frees here, since the local key goes away and nothing arrives,
/// so a server with no room left can still migrate its way out of trouble. That
/// is the same reasoning that leaves the flag off `DEL`.
const MIGRATE_FLAGS: &[&str] = &["write", "movablekeys"];
/// The connection commands' categories.
const AC_CONN: &[&str] = &["@fast", "@connection"];
/// The keyspace read side, which is `EXISTS` and `TYPE`.
const AC_KEY_READ: &[&str] = &["@keyspace", "@read", "@fast"];
/// The keyspace reads that walk something, which is `SCAN` and `RANDOMKEY`.
const AC_KEY_READ_SLOW: &[&str] = &["@keyspace", "@read", "@slow"];
/// And `KEYS`, which is the same walk without a bound on it and is the one read
/// in this group Redis calls dangerous.
const AC_KEY_READ_ALL: &[&str] = &["@keyspace", "@read", "@slow", "@dangerous"];
/// The keyspace writes that are allowed to cost what the value costs. `DEL`
/// frees on the spot and `COPY` clones a body, and `RENAME` is in here with
/// them even though it moves thirteen bytes, because Redis says slow for it and
/// this list is Redis's list rather than ours.
const AC_KEY_WRITE_SLOW: &[&str] = &["@keyspace", "@write", "@slow"];
/// `UNLINK`, which Redis does count as fast because it does not, and the
/// expiry writers, which move a deadline and never touch a value.
const AC_KEY_WRITE_FAST: &[&str] = &["@keyspace", "@write", "@fast"];
/// The two that empty a database, which are in the dangerous category.
const AC_KEY_FLUSH: &[&str] = &["@keyspace", "@write", "@slow", "@dangerous"];
/// `SWAPDB`, which is fast and dangerous at the same time. It is two pointer
/// writes and it changes what every connected client is looking at, so Redis
/// puts it in `@fast` and in `@dangerous` and both are right.
const AC_SWAPDB: &[&str] = &["@keyspace", "@write", "@fast", "@dangerous"];
/// `RESTORE`, which is dangerous for a reason worth saying out loud: it is the
/// one command that takes bytes from a client and turns them into a value
/// without any command ever having built it. `DUMP` is only `@read`, because
/// reading a value out is no more than reading it.
const AC_RESTORE: &[&str] = &["@keyspace", "@write", "@slow", "@dangerous"];
/// `WAIT` and `WAITAOF`, which are the two commands that block on something
/// that is not a key. They are not in `@keyspace` at all, because they name no
/// key and read nothing, and they carry `@blocking` for the same reason the
/// five list commands do.
const AC_WAIT: &[&str] = &["@slow", "@blocking", "@connection"];
/// `SORT`, which names three type categories because it takes any of the three
/// and a write because of `STORE`. Redis leaves `@keyspace` off both of these
/// even though the command lives in that group, and this list is Redis's.
const AC_SORT_WRITE: &[&str] = &[
    "@write",
    "@set",
    "@sortedset",
    "@list",
    "@slow",
    "@dangerous",
];
/// `SORT_RO`, which is the same list with the write turned into a read.
const AC_SORT_READ: &[&str] = &[
    "@read",
    "@set",
    "@sortedset",
    "@list",
    "@slow",
    "@dangerous",
];

/// Every command this server answers, in the order the groups ship.
pub static COMMANDS: &[Spec] = &[
    // ------------------------------------------------------------- strings
    Spec {
        name: "set",
        arity: -3,
        flags: WRITE_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_WRITE_SLOW,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Set a key to a string value, whatever it held before.",
        group: "string",
    },
    Spec {
        name: "get",
        arity: 2,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_READ_FAST,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "The string value of a key.",
        group: "string",
    },
    Spec {
        name: "getset",
        arity: 3,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_WRITE_FAST,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Set a key and hand back what it held.",
        group: "string",
    },
    Spec {
        name: "getdel",
        arity: 2,
        flags: &["write", "fast"],
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_WRITE_FAST,
        since: "6.2.0",
        complexity: "O(1)",
        summary: "Read a key and delete it in the same step.",
        group: "string",
    },
    Spec {
        name: "getex",
        arity: -2,
        flags: &["write", "fast"],
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_WRITE_FAST,
        since: "6.2.0",
        complexity: "O(1)",
        summary: "Read a key and change its deadline in the same step.",
        group: "string",
    },
    Spec {
        name: "setnx",
        arity: 3,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_WRITE_FAST,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Set a key only if it is not there.",
        group: "string",
    },
    Spec {
        name: "setex",
        arity: 4,
        flags: WRITE_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_WRITE_SLOW,
        since: "2.0.0",
        complexity: "O(1)",
        summary: "Set a key and give it a deadline in seconds.",
        group: "string",
    },
    Spec {
        name: "psetex",
        arity: 4,
        flags: WRITE_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_WRITE_SLOW,
        since: "2.6.0",
        complexity: "O(1)",
        summary: "Set a key and give it a deadline in milliseconds.",
        group: "string",
    },
    Spec {
        name: "mset",
        arity: -3,
        flags: WRITE_OOM,
        first_key: 1,
        last_key: -1,
        step: 2,
        acl: AC_WRITE_SLOW,
        since: "1.0.1",
        complexity: "O(N) with N the number of keys",
        summary: "Set several keys, all of them or none.",
        group: "string",
    },
    Spec {
        name: "msetnx",
        arity: -3,
        flags: WRITE_OOM,
        first_key: 1,
        last_key: -1,
        step: 2,
        acl: AC_WRITE_SLOW,
        since: "1.0.1",
        complexity: "O(N) with N the number of keys",
        summary: "Set several keys only if none of them are there.",
        group: "string",
    },
    Spec {
        name: "mget",
        arity: -2,
        flags: READ_FAST,
        first_key: 1,
        last_key: -1,
        step: 1,
        acl: AC_READ_FAST,
        since: "1.0.0",
        complexity: "O(N) with N the number of keys",
        summary: "The values of several keys, in the order asked for.",
        group: "string",
    },
    Spec {
        name: "append",
        arity: 3,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_WRITE_FAST,
        since: "2.0.0",
        complexity: "O(M) with M the length of the value being appended",
        summary: "Add to the end of a string, creating it if it is not there.",
        group: "string",
    },
    Spec {
        name: "strlen",
        arity: 2,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_READ_FAST,
        since: "2.2.0",
        complexity: "O(1)",
        summary: "How long a string value is, without reading it.",
        group: "string",
    },
    Spec {
        name: "setrange",
        arity: 4,
        flags: WRITE_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_WRITE_SLOW,
        since: "2.2.0",
        complexity: "O(M) with M the length of the replacement",
        summary: "Overwrite part of a string at an offset, zero filling the gap.",
        group: "string",
    },
    Spec {
        name: "getrange",
        arity: 4,
        flags: &["readonly"],
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_READ_SLOW,
        since: "2.4.0",
        complexity: "O(N) with N the length of the answer",
        summary: "Part of a string, by an inclusive range that may count backwards.",
        group: "string",
    },
    Spec {
        name: "substr",
        arity: 4,
        flags: &["readonly"],
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_READ_SLOW,
        since: "1.0.0",
        complexity: "O(N) with N the length of the answer",
        summary: "GETRANGE under the name it had before 2.4.",
        group: "string",
    },
    Spec {
        name: "incr",
        arity: 2,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_WRITE_FAST,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Add one, starting from zero if the key is not there.",
        group: "string",
    },
    Spec {
        name: "decr",
        arity: 2,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_WRITE_FAST,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Take one away, starting from zero if the key is not there.",
        group: "string",
    },
    Spec {
        name: "incrby",
        arity: 3,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_WRITE_FAST,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Add a number, starting from zero if the key is not there.",
        group: "string",
    },
    Spec {
        name: "decrby",
        arity: 3,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_WRITE_FAST,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Take a number away, starting from zero if the key is not there.",
        group: "string",
    },
    Spec {
        name: "incrbyfloat",
        arity: 3,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_WRITE_FAST,
        since: "2.6.0",
        complexity: "O(1)",
        summary: "Add a float, starting from zero if the key is not there.",
        group: "string",
    },
    Spec {
        name: "lcs",
        arity: -3,
        flags: &["readonly"],
        first_key: 1,
        last_key: 2,
        step: 1,
        acl: AC_READ_SLOW,
        since: "7.0.0",
        complexity: "O(N*M) with N and M the lengths of the two values",
        summary: "The longest subsequence two string values have in common.",
        group: "string",
    },
    Spec {
        name: "msetex",
        arity: -4,
        flags: &["write", "denyoom", "movablekeys"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_WRITE_SLOW,
        since: "8.4.0",
        complexity: "O(N) with N the number of keys",
        summary: "Set several keys with one deadline and one condition over all of them.",
        group: "string",
    },
    Spec {
        name: "delex",
        arity: -2,
        flags: &["write", "fast"],
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_WRITE_FAST,
        since: "8.4.0",
        complexity: "O(1) by value, O(N) by digest",
        summary: "Delete a key only if it still holds what the caller thinks.",
        group: "string",
    },
    Spec {
        name: "digest",
        arity: 2,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_READ_FAST,
        since: "8.4.0",
        complexity: "O(N) with N the length of the value",
        summary: "The XXH3 of a string value, as sixteen hex characters.",
        group: "string",
    },
    Spec {
        name: "increx",
        arity: -2,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_WRITE_FAST,
        since: "8.8.0",
        complexity: "O(1)",
        summary: "Count, with a bound, a saturation policy and a deadline.",
        group: "string",
    },
    // -------------------------------------------------------------- bitmaps
    Spec {
        name: "setbit",
        arity: 4,
        flags: WRITE_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_BIT_WRITE,
        since: "2.2.0",
        complexity: "O(1)",
        summary: "Set one bit of a string, growing it to reach the offset.",
        group: "bitmap",
    },
    Spec {
        name: "getbit",
        arity: 3,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_BIT_READ_FAST,
        since: "2.2.0",
        complexity: "O(1)",
        summary: "Read one bit of a string, or nought past its end.",
        group: "bitmap",
    },
    Spec {
        name: "bitcount",
        arity: -2,
        flags: &["readonly"],
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_BIT_READ,
        since: "2.6.0",
        complexity: "O(N)",
        summary: "Count the set bits of a string, or of a range of it.",
        group: "bitmap",
    },
    Spec {
        name: "bitpos",
        arity: -3,
        flags: &["readonly"],
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_BIT_READ,
        since: "2.8.7",
        complexity: "O(N)",
        summary: "Find the first bit set to one or nought in a string.",
        group: "bitmap",
    },
    Spec {
        name: "bitop",
        arity: -4,
        flags: WRITE_OOM,
        first_key: 2,
        last_key: -1,
        step: 1,
        acl: AC_BIT_WRITE,
        since: "2.6.0",
        complexity: "O(N) with N the length of the longest source",
        summary: "Combine strings bit by bit and store the result.",
        group: "bitmap",
    },
    Spec {
        name: "bitfield",
        arity: -2,
        flags: WRITE_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_BIT_WRITE,
        since: "3.2.0",
        complexity: "O(1) per subcommand",
        summary: "Read and write packed integer fields inside a string.",
        group: "bitmap",
    },
    Spec {
        name: "bitfield_ro",
        arity: -2,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_BIT_READ_FAST,
        since: "6.0.0",
        complexity: "O(1) per subcommand",
        summary: "The read only half of BITFIELD, for a replica to answer.",
        group: "bitmap",
    },
    // --------------------------------------------------------- hyperloglogs
    Spec {
        name: "pfadd",
        arity: -2,
        flags: WRITE_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HLL_WRITE_FAST,
        since: "2.8.9",
        complexity: "O(1) an element",
        summary: "Add elements to a sketch, answering whether it changed.",
        group: "hyperloglog",
    },
    Spec {
        name: "pfcount",
        arity: -2,
        flags: &["readonly"],
        first_key: 1,
        last_key: -1,
        step: 1,
        acl: AC_HLL_READ,
        since: "2.8.9",
        complexity: "O(1) for one key, O(N) for N of them",
        summary: "Estimate how many distinct elements the sketches hold.",
        group: "hyperloglog",
    },
    Spec {
        name: "pfmerge",
        arity: -2,
        flags: WRITE_OOM,
        first_key: 1,
        last_key: -1,
        step: 1,
        acl: AC_HLL_WRITE,
        since: "2.8.9",
        complexity: "O(N) in the number of sketches",
        summary: "Merge sketches into the first one, which is a union.",
        group: "hyperloglog",
    },
    Spec {
        name: "pfdebug",
        arity: 3,
        flags: WRITE_OOM_ADMIN,
        first_key: 2,
        last_key: 2,
        step: 1,
        acl: AC_HLL_ADMIN,
        since: "2.8.9",
        complexity: "O(N)",
        summary: "Look inside a sketch, and in one case convert it.",
        group: "hyperloglog",
    },
    Spec {
        name: "pfselftest",
        arity: 1,
        flags: &["admin"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_HLL_ADMIN,
        since: "2.8.9",
        complexity: "O(1)",
        summary: "Check the sketch code, which our tests do at build time.",
        group: "hyperloglog",
    },
    // ----------------------------------------------------------------- sets
    Spec {
        name: "sadd",
        arity: -3,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_SET_WRITE_FAST,
        since: "1.0.0",
        complexity: "O(N) with N the number of members being added",
        summary: "Add members to a set, creating it if it is not there.",
        group: "set",
    },
    Spec {
        name: "srem",
        arity: -3,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_SET_WRITE_FAST,
        since: "1.0.0",
        complexity: "O(N) with N the number of members being removed",
        summary: "Take members out of a set, deleting the key if none are left.",
        group: "set",
    },
    Spec {
        name: "scard",
        arity: 2,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_SET_READ_FAST,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "How many members a set has.",
        group: "set",
    },
    Spec {
        name: "sismember",
        arity: 3,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_SET_READ_FAST,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Whether a member is in a set.",
        group: "set",
    },
    Spec {
        name: "smismember",
        arity: -3,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_SET_READ_FAST,
        since: "6.2.0",
        complexity: "O(N) with N the number of members being asked about",
        summary: "Whether each of several members is in a set, in the order asked.",
        group: "set",
    },
    Spec {
        name: "smembers",
        arity: 2,
        flags: &["readonly"],
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_SET_READ_SLOW,
        since: "1.0.0",
        complexity: "O(N) with N the size of the set",
        summary: "Every member of a set.",
        group: "set",
    },
    Spec {
        name: "spop",
        arity: -2,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_SET_WRITE_FAST,
        since: "1.0.0",
        complexity: "O(1) without a count, O(N) with one",
        summary: "Take members out of a set at random and hand them back.",
        group: "set",
    },
    Spec {
        name: "srandmember",
        arity: -2,
        flags: &["readonly"],
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_SET_READ_SLOW,
        since: "1.0.0",
        complexity: "O(1) without a count, O(N) with one",
        summary: "Members of a set at random, leaving the set as it was.",
        group: "set",
    },
    Spec {
        name: "smove",
        arity: 4,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 2,
        step: 1,
        acl: AC_SET_WRITE_FAST,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Move one member from one set to another.",
        group: "set",
    },
    Spec {
        name: "sscan",
        arity: -3,
        flags: &["readonly"],
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_SET_READ_SLOW,
        since: "2.8.0",
        complexity: "O(1) a call, O(N) for a whole iteration",
        summary: "Walk part of a set and say where to carry on from.",
        group: "set",
    },
    Spec {
        name: "sinter",
        arity: -2,
        flags: &["readonly"],
        first_key: 1,
        last_key: -1,
        step: 1,
        acl: AC_SET_READ_SLOW,
        since: "1.0.0",
        complexity: "O(N*M) worst case, N the smallest set and M the number of sets",
        summary: "The members every one of these sets has.",
        group: "set",
    },
    Spec {
        name: "sintercard",
        arity: -3,
        // The only set command whose keys are counted rather than positioned,
        // so the legacy key range cannot describe it and Redis reports zeroes
        // in these three fields too. A client that wants the keys reads the key
        // specs, which is what the count is for, and movablekeys is how it is
        // told to go and read them.
        flags: READ_MOVABLE,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SET_READ_SLOW,
        since: "7.0.0",
        complexity: "O(N*M) worst case, N the smallest set and M the number of sets",
        summary: "How many members every one of these sets has, up to a limit.",
        group: "set",
    },
    Spec {
        name: "sinterstore",
        arity: -3,
        flags: WRITE_OOM,
        first_key: 1,
        last_key: -1,
        step: 1,
        acl: AC_SET_WRITE_SLOW,
        since: "1.0.0",
        complexity: "O(N*M) worst case, N the smallest set and M the number of sets",
        summary: "Store the members every one of these sets has.",
        group: "set",
    },
    Spec {
        name: "sunion",
        arity: -2,
        flags: &["readonly"],
        first_key: 1,
        last_key: -1,
        step: 1,
        acl: AC_SET_READ_SLOW,
        since: "1.0.0",
        complexity: "O(N) in the total number of members",
        summary: "The members any of these sets has, each once.",
        group: "set",
    },
    Spec {
        name: "sunionstore",
        arity: -3,
        flags: WRITE_OOM,
        first_key: 1,
        last_key: -1,
        step: 1,
        acl: AC_SET_WRITE_SLOW,
        since: "1.0.0",
        complexity: "O(N) in the total number of members",
        summary: "Store the members any of these sets has.",
        group: "set",
    },
    Spec {
        name: "sdiff",
        arity: -2,
        flags: &["readonly"],
        first_key: 1,
        last_key: -1,
        step: 1,
        acl: AC_SET_READ_SLOW,
        since: "1.0.0",
        complexity: "O(N) in the total number of members",
        summary: "The members of the first set that no later set has.",
        group: "set",
    },
    Spec {
        name: "sdiffstore",
        arity: -3,
        flags: WRITE_OOM,
        first_key: 1,
        last_key: -1,
        step: 1,
        acl: AC_SET_WRITE_SLOW,
        since: "1.0.0",
        complexity: "O(N) in the total number of members",
        summary: "Store the members of the first set that no later set has.",
        group: "set",
    },
    // The two 8.10 added, which are to SUNION and SDIFF what SINTERCARD is to
    // SINTER, and which describe their keys the same way it does and for the
    // same reason.
    Spec {
        name: "sunioncard",
        arity: -3,
        flags: READ_MOVABLE,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SET_READ_SLOW,
        since: "8.10.0",
        complexity: "O(N) in the total number of members",
        summary: "How many members any of these sets has, up to a limit.",
        group: "set",
    },
    Spec {
        name: "sdiffcard",
        arity: -3,
        flags: READ_MOVABLE,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SET_READ_SLOW,
        since: "8.10.0",
        complexity: "O(N) in the total number of members",
        summary: "How many members the first set has that no later set has, up to a limit.",
        group: "set",
    },
    // -------------------------------------------------------------- hashes
    Spec {
        name: "hset",
        arity: -4,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_WRITE_FAST,
        since: "2.0.0",
        complexity: "O(N) with N the number of pairs being written",
        summary: "Write fields into a hash, creating it if it is not there.",
        group: "hash",
    },
    Spec {
        name: "hsetnx",
        arity: 4,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_WRITE_FAST,
        since: "2.0.0",
        complexity: "O(1)",
        summary: "Write a field only if the hash does not have it already.",
        group: "hash",
    },
    // Deprecated since 4.0 and still sent by a great deal of code, so it is
    // here rather than left out. It is HSET with an OK instead of a count.
    Spec {
        name: "hmset",
        arity: -4,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_WRITE_FAST,
        since: "2.0.0",
        complexity: "O(N) with N the number of pairs being written",
        summary: "Write fields into a hash and answer OK. Use HSET.",
        group: "hash",
    },
    Spec {
        name: "hget",
        arity: 3,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_READ_FAST,
        since: "2.0.0",
        complexity: "O(1)",
        summary: "The value of one field of a hash.",
        group: "hash",
    },
    Spec {
        name: "hmget",
        arity: -3,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_READ_FAST,
        since: "2.0.0",
        complexity: "O(N) with N the number of fields asked for",
        summary: "The values of several fields, one reply entry each.",
        group: "hash",
    },
    Spec {
        name: "hdel",
        arity: -3,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_WRITE_FAST,
        since: "2.0.0",
        complexity: "O(N) with N the number of fields being removed",
        summary: "Take fields out of a hash, deleting the key if none are left.",
        group: "hash",
    },
    Spec {
        name: "hlen",
        arity: 2,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_READ_FAST,
        since: "2.0.0",
        complexity: "O(1)",
        summary: "How many fields a hash has.",
        group: "hash",
    },
    Spec {
        name: "hexists",
        arity: 3,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_READ_FAST,
        since: "2.0.0",
        complexity: "O(1)",
        summary: "Whether a hash has a field.",
        group: "hash",
    },
    Spec {
        name: "hstrlen",
        arity: 3,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_READ_FAST,
        since: "3.2.0",
        complexity: "O(1)",
        summary: "How many bytes a field's value is, without sending it.",
        group: "hash",
    },
    Spec {
        name: "hgetall",
        arity: 2,
        flags: &["readonly"],
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_READ_SLOW,
        since: "2.0.0",
        complexity: "O(N) in the size of the hash",
        summary: "Every field and value, as a map on RESP3.",
        group: "hash",
    },
    Spec {
        name: "hkeys",
        arity: 2,
        flags: &["readonly"],
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_READ_SLOW,
        since: "2.0.0",
        complexity: "O(N) in the size of the hash",
        summary: "Every field of a hash.",
        group: "hash",
    },
    Spec {
        name: "hvals",
        arity: 2,
        flags: &["readonly"],
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_READ_SLOW,
        since: "2.0.0",
        complexity: "O(N) in the size of the hash",
        summary: "Every value of a hash.",
        group: "hash",
    },
    Spec {
        name: "hincrby",
        arity: 4,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_WRITE_FAST,
        since: "2.0.0",
        complexity: "O(1)",
        summary: "Add an integer to a field, treating a missing one as zero.",
        group: "hash",
    },
    Spec {
        name: "hincrbyfloat",
        arity: 4,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_WRITE_FAST,
        since: "2.6.0",
        complexity: "O(1)",
        summary: "Add a float to a field, treating a missing one as zero.",
        group: "hash",
    },
    Spec {
        name: "hrandfield",
        arity: -2,
        flags: &["readonly"],
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_READ_SLOW,
        since: "6.2.0",
        complexity: "O(1) without a count, O(N) with one",
        summary: "Fields of a hash at random, leaving the hash as it was.",
        group: "hash",
    },
    Spec {
        name: "hscan",
        arity: -3,
        flags: &["readonly"],
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_READ_SLOW,
        since: "2.8.0",
        complexity: "O(1) a call, O(N) for a whole iteration",
        summary: "Walk part of a hash and say where to carry on from.",
        group: "hash",
    },
    Spec {
        name: "hexpire",
        arity: -6,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_WRITE_FAST,
        since: "7.4.0",
        complexity: "O(N) with N the number of fields named",
        summary: "Put a deadline in seconds on hash fields.",
        group: "hash",
    },
    Spec {
        name: "hpexpire",
        arity: -6,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_WRITE_FAST,
        since: "7.4.0",
        complexity: "O(N) with N the number of fields named",
        summary: "Put a deadline in milliseconds on hash fields.",
        group: "hash",
    },
    Spec {
        name: "hexpireat",
        arity: -6,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_WRITE_FAST,
        since: "7.4.0",
        complexity: "O(N) with N the number of fields named",
        summary: "Put an absolute deadline in unix seconds on hash fields.",
        group: "hash",
    },
    Spec {
        name: "hpexpireat",
        arity: -6,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_WRITE_FAST,
        since: "7.4.0",
        complexity: "O(N) with N the number of fields named",
        summary: "Put an absolute deadline in unix milliseconds on hash fields.",
        group: "hash",
    },
    Spec {
        name: "httl",
        arity: -5,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_READ_FAST,
        since: "7.4.0",
        complexity: "O(N) with N the number of fields named",
        summary: "How long hash fields have left, in seconds.",
        group: "hash",
    },
    Spec {
        name: "hpttl",
        arity: -5,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_READ_FAST,
        since: "7.4.0",
        complexity: "O(N) with N the number of fields named",
        summary: "How long hash fields have left, in milliseconds.",
        group: "hash",
    },
    Spec {
        name: "hexpiretime",
        arity: -5,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_READ_FAST,
        since: "7.4.0",
        complexity: "O(N) with N the number of fields named",
        summary: "When hash fields fall due, in unix seconds.",
        group: "hash",
    },
    Spec {
        name: "hpexpiretime",
        arity: -5,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_READ_FAST,
        since: "7.4.0",
        complexity: "O(N) with N the number of fields named",
        summary: "When hash fields fall due, in unix milliseconds.",
        group: "hash",
    },
    Spec {
        name: "hpersist",
        arity: -5,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_WRITE_FAST,
        since: "7.4.0",
        complexity: "O(N) with N the number of fields named",
        summary: "Take the deadlines off hash fields.",
        group: "hash",
    },
    Spec {
        name: "hgetdel",
        arity: -5,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_WRITE_FAST,
        since: "8.0.0",
        complexity: "O(N) with N the number of fields named",
        summary: "Read hash fields and delete them.",
        group: "hash",
    },
    Spec {
        name: "hgetex",
        arity: -5,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_WRITE_FAST,
        since: "8.0.0",
        complexity: "O(N) with N the number of fields named",
        summary: "Read hash fields and set their deadlines.",
        group: "hash",
    },
    Spec {
        name: "hsetex",
        arity: -6,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_HASH_WRITE_FAST,
        since: "8.0.0",
        complexity: "O(N) with N the number of fields being set",
        summary: "Set hash fields and their deadlines together.",
        group: "hash",
    },
    // A container with no flags and no keys of its own, which is what a real
    // 8.10.1 reports: the write flags and the key index live on `HIMPORT SET`
    // and this row is only the name and the categories.
    Spec {
        name: "himport",
        arity: -2,
        flags: &[],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_HASH_SLOW,
        since: "8.10.0",
        complexity: "Depends on subcommand.",
        summary: "A container for session-based hash import commands using fieldsets.",
        group: "hash",
    },
    // ---------------------------------------------------------------- lists
    Spec {
        name: "lpush",
        arity: -3,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_LIST_WRITE_FAST,
        since: "1.0.0",
        complexity: "O(N) with N the number of elements pushed",
        summary: "Push elements onto the head of a list.",
        group: "list",
    },
    Spec {
        name: "rpush",
        arity: -3,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_LIST_WRITE_FAST,
        since: "1.0.0",
        complexity: "O(N) with N the number of elements pushed",
        summary: "Push elements onto the tail of a list.",
        group: "list",
    },
    Spec {
        name: "lpushx",
        arity: -3,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_LIST_WRITE_FAST,
        since: "2.2.0",
        complexity: "O(N) with N the number of elements pushed",
        summary: "Push elements onto the head of a list that already exists.",
        group: "list",
    },
    Spec {
        name: "rpushx",
        arity: -3,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_LIST_WRITE_FAST,
        since: "2.2.0",
        complexity: "O(N) with N the number of elements pushed",
        summary: "Push elements onto the tail of a list that already exists.",
        group: "list",
    },
    Spec {
        name: "lpop",
        arity: -2,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_LIST_WRITE_FAST,
        since: "1.0.0",
        complexity: "O(N) with N the count asked for",
        summary: "Take elements off the head of a list.",
        group: "list",
    },
    Spec {
        name: "rpop",
        arity: -2,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_LIST_WRITE_FAST,
        since: "1.0.0",
        complexity: "O(N) with N the count asked for",
        summary: "Take elements off the tail of a list.",
        group: "list",
    },
    Spec {
        name: "llen",
        arity: 2,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_LIST_READ_FAST,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "How many elements a list holds.",
        group: "list",
    },
    Spec {
        name: "lrange",
        arity: 4,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_LIST_READ_SLOW,
        since: "1.0.0",
        complexity: "O(S+N) with S the offset of the first element and N the range",
        summary: "Read a range of a list, both ends included.",
        group: "list",
    },
    Spec {
        name: "lindex",
        arity: 3,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_LIST_READ_SLOW,
        since: "1.0.0",
        complexity: "O(N) with N the distance to the index from the nearer end",
        summary: "Read one element of a list by index.",
        group: "list",
    },
    Spec {
        name: "lset",
        arity: 4,
        flags: WRITE_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_LIST_WRITE_SLOW,
        since: "1.0.0",
        complexity: "O(N) with N the distance to the index from the nearer end",
        summary: "Replace one element of a list by index.",
        group: "list",
    },
    Spec {
        name: "linsert",
        arity: 5,
        flags: WRITE_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_LIST_WRITE_SLOW,
        since: "2.2.0",
        complexity: "O(N) with N the distance to the pivot from the head",
        summary: "Insert an element before or after another one.",
        group: "list",
    },
    Spec {
        name: "lrem",
        arity: 4,
        flags: WRITE_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_LIST_WRITE_SLOW,
        since: "1.0.0",
        complexity: "O(N) with N the length of the list",
        summary: "Remove elements equal to a value from a list.",
        group: "list",
    },
    Spec {
        name: "ltrim",
        arity: 4,
        flags: WRITE_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_LIST_WRITE_SLOW,
        since: "1.0.0",
        complexity: "O(N) with N the number of elements thrown away",
        summary: "Keep a range of a list and throw the rest away.",
        group: "list",
    },
    Spec {
        name: "lpos",
        arity: -3,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_LIST_READ_SLOW,
        since: "6.0.6",
        complexity: "O(N) with N the length of the list",
        summary: "Find where a value sits in a list.",
        group: "list",
    },
    Spec {
        name: "rpoplpush",
        arity: 3,
        flags: WRITE_OOM,
        first_key: 1,
        last_key: 2,
        step: 1,
        acl: AC_LIST_WRITE_SLOW,
        since: "1.2.0",
        complexity: "O(1)",
        summary: "Move an element from the tail of one list to the head of another.",
        group: "list",
    },
    Spec {
        name: "lmove",
        arity: 5,
        flags: WRITE_OOM,
        first_key: 1,
        last_key: 2,
        step: 1,
        acl: AC_LIST_WRITE_SLOW,
        since: "6.2.0",
        complexity: "O(1)",
        summary: "Move an element from either end of one list to either end of another.",
        group: "list",
    },
    Spec {
        name: "lmovem",
        arity: -5,
        flags: WRITE_OOM,
        first_key: 1,
        last_key: 2,
        step: 1,
        acl: AC_LIST_WRITE_SLOW,
        since: "8.10.0",
        complexity: "O(N) in the number of elements moved",
        summary: "Move several elements from either end of one list to either end of another.",
        group: "list",
    },
    // The keys are behind a count, so `first_key` is zero and a cluster client
    // has to ask `COMMAND GETKEYS` rather than read a position out of this row.
    // That is what `movablekeys` means and it is why the three key fields are
    // all zero rather than pointing at argument two.
    Spec {
        name: "lmpop",
        arity: -4,
        flags: &["write", "movablekeys"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_LIST_WRITE_SLOW,
        since: "7.0.0",
        complexity: "O(N+M) with N the number of keys and M the count popped",
        summary: "Pop from the first of several lists that has anything in it.",
        group: "list",
    },
    // The five that wait. `blocking` is what the dispatcher branches on to send
    // them somewhere that can park a client, so it is load bearing here rather
    // than only being reported.
    //
    // `BLPOP` and `BRPOP` take their keys up to the timeout, which is the one
    // shape in the list group where `last_key` is negative: everything from
    // argument one to the second from last.
    Spec {
        name: "blpop",
        arity: -3,
        flags: &["write", "blocking"],
        first_key: 1,
        last_key: -2,
        step: 1,
        acl: AC_LIST_WRITE_BLOCKING,
        since: "2.0.0",
        complexity: "O(N) with N the number of keys named",
        summary: "Pop the head of the first list that has anything, waiting if none does.",
        group: "list",
    },
    Spec {
        name: "brpop",
        arity: -3,
        flags: &["write", "blocking"],
        first_key: 1,
        last_key: -2,
        step: 1,
        acl: AC_LIST_WRITE_BLOCKING,
        since: "2.0.0",
        complexity: "O(N) with N the number of keys named",
        summary: "Pop the tail of the first list that has anything, waiting if none does.",
        group: "list",
    },
    // Redis marks the two that push somewhere `denyoom` and does not mark the
    // pops, because these are the blocking commands that can grow the keyspace.
    Spec {
        name: "blmove",
        arity: 6,
        flags: &["write", "denyoom", "blocking"],
        first_key: 1,
        last_key: 2,
        step: 1,
        acl: AC_LIST_WRITE_BLOCKING,
        since: "6.2.0",
        complexity: "O(1)",
        summary: "Move an element between two lists, waiting for one to arrive.",
        group: "list",
    },
    Spec {
        name: "blmovem",
        arity: -6,
        flags: &["write", "denyoom", "blocking"],
        first_key: 1,
        last_key: 2,
        step: 1,
        acl: AC_LIST_WRITE_BLOCKING,
        since: "8.10.0",
        complexity: "O(N) in the number of elements moved",
        summary: "Move several elements between two lists, waiting for them to arrive.",
        group: "list",
    },
    Spec {
        name: "brpoplpush",
        arity: 4,
        flags: &["write", "denyoom", "blocking"],
        first_key: 1,
        last_key: 2,
        step: 1,
        acl: AC_LIST_WRITE_BLOCKING,
        since: "2.2.0",
        complexity: "O(1)",
        summary: "Move a tail element to another list's head, waiting for one to arrive.",
        group: "list",
    },
    // Keys behind a count again, so the same three zeroes `LMPOP` has.
    Spec {
        name: "blmpop",
        arity: -5,
        flags: &["write", "blocking", "movablekeys"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_LIST_WRITE_BLOCKING,
        since: "7.0.0",
        complexity: "O(N+M) with N the number of keys and M the count popped",
        summary: "Pop from the first of several lists that has anything, waiting if none does.",
        group: "list",
    },
    // ------------------------------------------------------------ sorted set
    Spec {
        name: "zadd",
        arity: -4,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_WRITE_FAST,
        since: "1.2.0",
        complexity: "O(log(N)) for each member added",
        summary: "Add members with scores, or move the scores of members already there.",
        group: "zset",
    },
    Spec {
        name: "zincrby",
        arity: 4,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_WRITE_FAST,
        since: "1.2.0",
        complexity: "O(log(N))",
        summary: "Add to a member's score, creating the member at zero if it is not there.",
        group: "zset",
    },
    Spec {
        name: "zcard",
        arity: 2,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_READ_FAST,
        since: "1.2.0",
        complexity: "O(1)",
        summary: "How many members a sorted set has.",
        group: "zset",
    },
    Spec {
        name: "zscore",
        arity: 3,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_READ_FAST,
        since: "1.2.0",
        complexity: "O(1)",
        summary: "A member's score, or nothing if it is not there.",
        group: "zset",
    },
    Spec {
        name: "zmscore",
        arity: -3,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_READ_FAST,
        since: "6.2.0",
        complexity: "O(N) with N the number of members asked about",
        summary: "The scores of several members in one round trip.",
        group: "zset",
    },
    Spec {
        name: "zrem",
        arity: -3,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_WRITE_FAST,
        since: "1.2.0",
        complexity: "O(M*log(N)) with M the number of members removed",
        summary: "Remove members, deleting the key if the last one goes.",
        group: "zset",
    },
    Spec {
        name: "zrank",
        arity: -3,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_READ_FAST,
        since: "2.0.0",
        complexity: "O(log(N))",
        summary: "Where a member sits counting up from the lowest score.",
        group: "zset",
    },
    Spec {
        name: "zrevrank",
        arity: -3,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_READ_FAST,
        since: "2.0.0",
        complexity: "O(log(N))",
        summary: "Where a member sits counting down from the highest score.",
        group: "zset",
    },
    Spec {
        name: "zcount",
        arity: 4,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_READ_FAST,
        since: "2.0.0",
        complexity: "O(log(N))",
        summary: "How many members have scores between two bounds.",
        group: "zset",
    },
    Spec {
        name: "zlexcount",
        arity: 4,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_READ_FAST,
        since: "2.8.9",
        complexity: "O(log(N))",
        summary: "How many members fall between two members, by name.",
        group: "zset",
    },
    Spec {
        name: "zrange",
        arity: -4,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_READ_SLOW,
        since: "1.2.0",
        complexity: "O(log(N)+M) with M the number of members answered",
        summary: "A window of members, by rank or by score or by name, either way round.",
        group: "zset",
    },
    Spec {
        name: "zrevrange",
        arity: -4,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_READ_SLOW,
        since: "1.2.0",
        complexity: "O(log(N)+M) with M the number of members answered",
        summary: "A window by rank, counting down from the highest score.",
        group: "zset",
    },
    Spec {
        name: "zrangebyscore",
        arity: -4,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_READ_SLOW,
        since: "1.0.5",
        complexity: "O(log(N)+M) with M the number of members answered",
        summary: "The members whose scores fall between two bounds.",
        group: "zset",
    },
    Spec {
        name: "zrevrangebyscore",
        arity: -4,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_READ_SLOW,
        since: "2.2.0",
        complexity: "O(log(N)+M) with M the number of members answered",
        summary: "The same window as ZRANGEBYSCORE, highest score first and named high end first.",
        group: "zset",
    },
    Spec {
        name: "zrangebylex",
        arity: -4,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_READ_SLOW,
        since: "2.8.9",
        complexity: "O(log(N)+M) with M the number of members answered",
        summary: "The members that fall between two names, for a set where every score is the same.",
        group: "zset",
    },
    Spec {
        name: "zrevrangebylex",
        arity: -4,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_READ_SLOW,
        since: "2.8.9",
        complexity: "O(log(N)+M) with M the number of members answered",
        summary: "The same window as ZRANGEBYLEX, backwards and named high end first.",
        group: "zset",
    },
    Spec {
        name: "zrangestore",
        arity: -5,
        flags: WRITE_OOM,
        first_key: 1,
        last_key: 2,
        step: 1,
        acl: AC_ZSET_WRITE_SLOW,
        since: "6.2.0",
        complexity: "O(log(N)+M) with M the number of members stored",
        summary: "Write a window of one sorted set into another key.",
        group: "zset",
    },
    Spec {
        name: "zremrangebyrank",
        arity: 4,
        flags: WRITE_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_WRITE_SLOW,
        since: "2.0.0",
        complexity: "O(log(N)+M) with M the number of members removed",
        summary: "Remove the members in a range of ranks.",
        group: "zset",
    },
    Spec {
        name: "zremrangebyscore",
        arity: 4,
        flags: WRITE_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_WRITE_SLOW,
        since: "1.2.0",
        complexity: "O(log(N)+M) with M the number of members removed",
        summary: "Remove the members whose scores fall between two bounds.",
        group: "zset",
    },
    Spec {
        name: "zremrangebylex",
        arity: 4,
        flags: WRITE_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_WRITE_SLOW,
        since: "2.8.9",
        complexity: "O(log(N)+M) with M the number of members removed",
        summary: "Remove the members that fall between two names.",
        group: "zset",
    },
    Spec {
        name: "zunion",
        arity: -3,
        flags: READ_MOVABLE,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_ZSET_READ_SLOW,
        since: "6.2.0",
        complexity: "O(N)+O(M*log(M)) with N the total number of members and M the number in the answer",
        summary: "Every member of these sorted sets, with the scores combined.",
        group: "zset",
    },
    Spec {
        name: "zinter",
        arity: -3,
        flags: READ_MOVABLE,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_ZSET_READ_SLOW,
        since: "6.2.0",
        complexity: "O(N)+O(M*log(M)) with N the total number of members and M the number in the answer",
        summary: "Only the members all of these sorted sets have, with the scores combined.",
        group: "zset",
    },
    Spec {
        name: "zdiff",
        arity: -3,
        flags: READ_MOVABLE,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_ZSET_READ_SLOW,
        since: "6.2.0",
        complexity: "O(N)+O(M*log(M)) with N the total number of members and M the number in the answer",
        summary: "The members of the first that none of the rest have.",
        group: "zset",
    },
    Spec {
        name: "zunionstore",
        arity: -4,
        flags: WRITE_MOVABLE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_WRITE_SLOW,
        since: "2.0.0",
        complexity: "O(N)+O(M*log(M)) with N the total number of members and M the number in the answer",
        summary: "Store the union in another key and say how big it is.",
        group: "zset",
    },
    Spec {
        name: "zinterstore",
        arity: -4,
        flags: WRITE_MOVABLE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_WRITE_SLOW,
        since: "2.0.0",
        complexity: "O(N)+O(M*log(M)) with N the total number of members and M the number in the answer",
        summary: "Store the intersection in another key and say how big it is.",
        group: "zset",
    },
    Spec {
        name: "zdiffstore",
        arity: -4,
        flags: WRITE_MOVABLE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_WRITE_SLOW,
        since: "6.2.0",
        complexity: "O(N)+O(M*log(M)) with N the total number of members and M the number in the answer",
        summary: "Store the difference in another key and say how big it is.",
        group: "zset",
    },
    Spec {
        name: "zintercard",
        arity: -3,
        flags: READ_MOVABLE,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_ZSET_READ_SLOW,
        since: "7.0.0",
        complexity: "O(N*M) worst case, N the smallest input and M the number of inputs",
        summary: "How many members the intersection would have, without building it.",
        group: "zset",
    },
    Spec {
        name: "zrandmember",
        arity: -2,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_READ_SLOW,
        since: "6.2.0",
        complexity: "O(N) with N the number of members drawn",
        summary: "Draw members at random, with or without replacement.",
        group: "zset",
    },
    Spec {
        name: "zscan",
        arity: -3,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_READ_SLOW,
        since: "2.8.0",
        complexity: "O(1) per call, O(N) over a full walk",
        summary: "Walk the members and their scores a batch at a time.",
        group: "zset",
    },
    // The pops. Redis calls the two single key ones fast even though they cost a
    // logarithm, on the grounds that the logarithm is of a size a client chose.
    Spec {
        name: "zpopmin",
        arity: -2,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_WRITE_FAST,
        since: "5.0.0",
        complexity: "O(log(N)*M) with M the number of members popped",
        summary: "Take the lowest scoring members off and answer them.",
        group: "zset",
    },
    Spec {
        name: "zpopmax",
        arity: -2,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ZSET_WRITE_FAST,
        since: "5.0.0",
        complexity: "O(log(N)*M) with M the number of members popped",
        summary: "Take the highest scoring members off and answer them.",
        group: "zset",
    },
    // Keys behind a count, so the same three zeroes `LMPOP` has, and `write`
    // without `denyoom` because a pop cannot grow the keyspace.
    Spec {
        name: "zmpop",
        arity: -4,
        flags: &["write", "movablekeys"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_ZSET_WRITE_SLOW,
        since: "7.0.0",
        complexity: "O(K) + O(M*log(N)) with K the keys named and M the count popped",
        summary: "Pop from the first of several sorted sets that has anything in it.",
        group: "zset",
    },
    // The three that wait. `blocking` is what the dispatcher branches on, the
    // same as it is for the five list ones.
    Spec {
        name: "bzpopmin",
        arity: -3,
        flags: &["write", "blocking", "fast"],
        first_key: 1,
        last_key: -2,
        step: 1,
        acl: AC_ZSET_BLOCKING_FAST,
        since: "5.0.0",
        complexity: "O(log(N)) with N the size of the sorted set that answers",
        summary: "Take the lowest scoring member off the first sorted set that has one, waiting if none does.",
        group: "zset",
    },
    Spec {
        name: "bzpopmax",
        arity: -3,
        flags: &["write", "blocking", "fast"],
        first_key: 1,
        last_key: -2,
        step: 1,
        acl: AC_ZSET_BLOCKING_FAST,
        since: "5.0.0",
        complexity: "O(log(N)) with N the size of the sorted set that answers",
        summary: "Take the highest scoring member off the first sorted set that has one, waiting if none does.",
        group: "zset",
    },
    Spec {
        name: "bzmpop",
        arity: -5,
        flags: &["write", "blocking", "movablekeys"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_ZSET_BLOCKING_SLOW,
        since: "7.0.0",
        complexity: "O(K) + O(M*log(N)) with K the keys named and M the count popped",
        summary: "Pop from the first of several sorted sets that has anything, waiting if none does.",
        group: "zset",
    },
    // ----------------------------------------------------------------- geo
    Spec {
        name: "geoadd",
        arity: -5,
        flags: WRITE_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_GEO_WRITE,
        since: "3.2.0",
        complexity: "O(log(N)) per point added",
        summary: "Add places to a geo key, which is a sorted set of position hashes.",
        group: "geo",
    },
    Spec {
        name: "geopos",
        arity: -2,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_GEO_READ,
        since: "3.2.0",
        complexity: "O(1) per member asked about",
        summary: "Answer where each member is, as a longitude and a latitude.",
        group: "geo",
    },
    Spec {
        name: "geodist",
        arity: -4,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_GEO_READ,
        since: "3.2.0",
        complexity: "O(1)",
        summary: "Answer how far apart two members are, in the unit asked for.",
        group: "geo",
    },
    Spec {
        name: "geohash",
        arity: -2,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_GEO_READ,
        since: "3.2.0",
        complexity: "O(1) per member asked about",
        summary: "Answer each member's position as a standard eleven character geohash.",
        group: "geo",
    },
    Spec {
        name: "geosearch",
        arity: -7,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_GEO_READ,
        since: "6.2.0",
        complexity: "O(N+log(M)) with N the members in the boxes searched",
        summary: "Find the members inside a circle or a rectangle around a point.",
        group: "geo",
    },
    Spec {
        name: "geosearchstore",
        arity: -8,
        flags: WRITE_OOM,
        first_key: 1,
        last_key: 2,
        step: 1,
        acl: AC_GEO_WRITE,
        since: "6.2.0",
        complexity: "O(N+log(M)) with N the members in the boxes searched",
        summary: "Run a search and write what it found into another key.",
        group: "geo",
    },
    Spec {
        name: "georadius",
        arity: -6,
        flags: WRITE_MOVABLE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_GEO_WRITE,
        since: "3.2.0",
        complexity: "O(N+log(M)) with N the members in the boxes searched",
        summary: "The older spelling of a circular search, which can also store.",
        group: "geo",
    },
    Spec {
        name: "georadius_ro",
        arity: -6,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_GEO_READ,
        since: "3.2.10",
        complexity: "O(N+log(M)) with N the members in the boxes searched",
        summary: "GEORADIUS without the store options, so a replica can serve it.",
        group: "geo",
    },
    Spec {
        name: "georadiusbymember",
        arity: -5,
        flags: WRITE_MOVABLE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_GEO_WRITE,
        since: "3.2.0",
        complexity: "O(N+log(M)) with N the members in the boxes searched",
        summary: "The same search centred on a member rather than on a point.",
        group: "geo",
    },
    Spec {
        name: "georadiusbymember_ro",
        arity: -5,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_GEO_READ,
        since: "3.2.10",
        complexity: "O(N+log(M)) with N the members in the boxes searched",
        summary: "GEORADIUSBYMEMBER without the store options.",
        group: "geo",
    },
    // --------------------------------------------------------------- graph
    Spec {
        name: "g.nadd",
        arity: -3,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_GRAPH_WRITE_FAST,
        since: "8.8.0",
        complexity: "O(N) with N the fields written",
        summary: "Write a node and its properties, creating it if it is new.",
        group: "graph",
    },
    Spec {
        name: "g.nget",
        arity: 3,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_GRAPH_READ_FAST,
        since: "8.8.0",
        complexity: "O(N) with N the fields on the node",
        summary: "Every property on a node.",
        group: "graph",
    },
    Spec {
        name: "g.ndel",
        arity: 3,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_GRAPH_WRITE_FAST,
        since: "8.8.0",
        complexity: "O(E) with E the edges on the node",
        summary: "Delete a node and every edge that touches it.",
        group: "graph",
    },
    Spec {
        name: "g.eadd",
        arity: -5,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_GRAPH_WRITE_FAST,
        since: "8.8.0",
        complexity: "O(D) with D the outgoing degree under the label",
        summary: "Write an edge and its properties, creating either end if it is new.",
        group: "graph",
    },
    Spec {
        name: "g.edel",
        arity: 5,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_GRAPH_WRITE_FAST,
        since: "8.8.0",
        complexity: "O(D) with D the outgoing degree under the label",
        summary: "Delete one edge between two nodes under a label.",
        group: "graph",
    },
    Spec {
        name: "g.out",
        arity: -4,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_GRAPH_READ_FAST,
        since: "8.8.0",
        complexity: "O(N) with N the page asked for",
        summary: "Outgoing neighbours under a label, a page at a time.",
        group: "graph",
    },
    Spec {
        name: "g.in",
        arity: -4,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_GRAPH_READ_FAST,
        since: "8.8.0",
        complexity: "O(N) with N the page asked for",
        summary: "Incoming neighbours under a label, a page at a time.",
        group: "graph",
    },
    Spec {
        name: "g.deg",
        arity: -4,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_GRAPH_READ_FAST,
        since: "8.8.0",
        complexity: "O(1)",
        summary: "How many edges a node has under a label.",
        group: "graph",
    },
    Spec {
        name: "g.neigh",
        arity: -4,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_GRAPH_READ_SLOW,
        since: "8.8.0",
        complexity: "O(V + E) over the ball the depth reaches",
        summary: "Everything reachable within a depth, each node once.",
        group: "graph",
    },
    Spec {
        name: "g.path",
        arity: -4,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_GRAPH_READ_SLOW,
        since: "8.8.0",
        complexity: "O(b^(d/2)) with b the branching factor and d the distance",
        summary: "A shortest path between two nodes, searched from both ends.",
        group: "graph",
    },
    // ---------------------------------------------------------------- json
    Spec {
        name: "json.set",
        arity: -4,
        flags: JSON_WRITE_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_JSON_WRITE,
        since: "1.0.0",
        complexity: "O(N) with N the size of the document",
        summary: "Set the value at a path, creating the document at the root.",
        group: "json",
    },
    Spec {
        name: "json.mset",
        arity: -4,
        flags: JSON_WRITE_OOM,
        first_key: 1,
        last_key: -1,
        step: 3,
        acl: AC_JSON_WRITE,
        since: "2.6.0",
        complexity: "O(K*N) with K the keys and N the size of each document",
        summary: "Set the value at a path in each of several documents.",
        group: "json",
    },
    Spec {
        name: "json.merge",
        arity: -4,
        flags: JSON_WRITE_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_JSON_WRITE,
        since: "2.6.0",
        complexity: "O(N) with N the size of the document",
        summary: "Apply an RFC 7386 merge patch at a path.",
        group: "json",
    },
    Spec {
        name: "json.get",
        arity: -2,
        flags: JSON_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_JSON_READ,
        since: "1.0.0",
        complexity: "O(N) with N the size of what the paths matched",
        summary: "The values one or more paths match, as JSON text.",
        group: "json",
    },
    Spec {
        name: "json.mget",
        arity: -3,
        flags: JSON_READ,
        first_key: 1,
        last_key: -2,
        step: 1,
        acl: AC_JSON_READ,
        since: "1.0.0",
        complexity: "O(K*N) with K the keys and N the size of each document",
        summary: "One path against several documents, one answer per key.",
        group: "json",
    },
    Spec {
        name: "json.del",
        arity: -2,
        flags: JSON_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_JSON_WRITE,
        since: "1.0.0",
        complexity: "O(N) with N the size of the document",
        summary: "Remove what a path matched, or the key when it is the root.",
        group: "json",
    },
    Spec {
        name: "json.forget",
        arity: -2,
        flags: JSON_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_JSON_WRITE,
        since: "1.0.0",
        complexity: "O(N) with N the size of the document",
        summary: "The same command as JSON.DEL, under its other name.",
        group: "json",
    },
    Spec {
        name: "json.type",
        arity: -2,
        flags: JSON_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_JSON_READ,
        since: "1.0.0",
        complexity: "O(N) with N the size of the document",
        summary: "The JSON type of what a path matched.",
        group: "json",
    },
    Spec {
        name: "json.toggle",
        arity: 3,
        flags: JSON_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_JSON_WRITE,
        since: "2.0.0",
        complexity: "O(N) with N the size of the document",
        summary: "Flip every boolean a path matched.",
        group: "json",
    },
    Spec {
        name: "json.clear",
        arity: -2,
        flags: JSON_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_JSON_WRITE,
        since: "2.0.0",
        complexity: "O(N) with N the size of the document",
        summary: "Empty the containers and zero the numbers a path matched.",
        group: "json",
    },
    Spec {
        name: "json.arrlen",
        arity: -2,
        flags: JSON_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_JSON_READ,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "How many elements are in the arrays a path matched.",
        group: "json",
    },
    Spec {
        name: "json.objlen",
        arity: -2,
        flags: JSON_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_JSON_READ,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "How many members are in the objects a path matched.",
        group: "json",
    },
    Spec {
        name: "json.strlen",
        arity: -2,
        flags: JSON_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_JSON_READ,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "How long the strings a path matched are, in bytes.",
        group: "json",
    },
    Spec {
        name: "json.objkeys",
        arity: -2,
        flags: JSON_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_JSON_READ,
        since: "1.0.0",
        complexity: "O(N) with N the number of members",
        summary: "The keys of the objects a path matched.",
        group: "json",
    },
    Spec {
        name: "json.arrappend",
        arity: -3,
        flags: JSON_WRITE_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_JSON_WRITE,
        since: "1.0.0",
        complexity: "O(N) with N the size of the document",
        summary: "Add values to the end of the arrays a path matched.",
        group: "json",
    },
    Spec {
        name: "json.arrinsert",
        arity: -5,
        flags: JSON_WRITE_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_JSON_WRITE,
        since: "1.0.0",
        complexity: "O(N) with N the size of the document",
        summary: "Put values into the arrays a path matched, at an index.",
        group: "json",
    },
    Spec {
        name: "json.arrtrim",
        arity: 5,
        flags: JSON_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_JSON_WRITE,
        since: "1.0.0",
        complexity: "O(N) with N the size of the document",
        summary: "Keep only a run of the arrays a path matched.",
        group: "json",
    },
    Spec {
        name: "json.arrpop",
        arity: -2,
        flags: JSON_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_JSON_WRITE,
        since: "1.0.0",
        complexity: "O(N) with N the size of the document",
        summary: "Take one element out of the arrays a path matched.",
        group: "json",
    },
    Spec {
        name: "json.arrindex",
        arity: -4,
        flags: JSON_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_JSON_READ,
        since: "1.0.0",
        complexity: "O(N) with N the number of elements",
        summary: "Where a value first sits in the arrays a path matched.",
        group: "json",
    },
    Spec {
        name: "json.numincrby",
        arity: 4,
        flags: JSON_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_JSON_WRITE,
        since: "1.0.0",
        complexity: "O(N) with N the size of the document",
        summary: "Add to every number a path matched.",
        group: "json",
    },
    Spec {
        name: "json.nummultby",
        arity: 4,
        flags: JSON_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_JSON_WRITE,
        since: "1.0.0",
        complexity: "O(N) with N the size of the document",
        summary: "Multiply every number a path matched.",
        group: "json",
    },
    Spec {
        name: "json.numpowby",
        arity: 4,
        flags: JSON_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_JSON_WRITE,
        since: "1.0.0",
        complexity: "O(N) with N the size of the document",
        summary: "Raise every number a path matched to a power.",
        group: "json",
    },
    Spec {
        name: "json.strappend",
        arity: -3,
        flags: JSON_WRITE_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_JSON_WRITE,
        since: "1.0.0",
        complexity: "O(N) with N the size of the document",
        summary: "Add to the end of every string a path matched.",
        group: "json",
    },
    Spec {
        name: "json.resp",
        arity: -2,
        flags: JSON_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_JSON_READ,
        since: "1.0.0",
        complexity: "O(N) with N the size of what the path matched",
        summary: "What a path matched, as RESP types rather than as JSON text.",
        group: "json",
    },
    Spec {
        name: "json.debug",
        arity: -2,
        flags: JSON_READ_MOVABLE,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_JSON_READ,
        since: "1.0.0",
        complexity: "O(N) with N the size of what the path matched",
        summary: "How much memory a document takes, and the help for that.",
        group: "json",
    },
    // -------------------------------------------------------------- vector
    Spec {
        name: "VADD",
        arity: -5,
        flags: VECTOR_WRITE_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_NONE,
        since: "8.0.0",
        complexity: "O(P*D) with P the partitions probed and D the dimension",
        summary: "Add a vector to a vector set under an element name.",
        group: "vector",
    },
    Spec {
        name: "VSIM",
        arity: -4,
        flags: VECTOR_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_NONE,
        since: "8.0.0",
        complexity: "O(P*D) with P the partitions probed and D the dimension",
        summary: "The elements nearest a vector or nearest another element.",
        group: "vector",
    },
    Spec {
        name: "VREM",
        arity: 3,
        flags: VECTOR_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_NONE,
        since: "8.0.0",
        complexity: "O(1)",
        summary: "Remove an element and its vector from a vector set.",
        group: "vector",
    },
    Spec {
        name: "VCARD",
        arity: 2,
        flags: VECTOR_READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_NONE,
        since: "8.0.0",
        complexity: "O(1)",
        summary: "How many elements a vector set holds.",
        group: "vector",
    },
    Spec {
        name: "VDIM",
        arity: 2,
        flags: VECTOR_READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_NONE,
        since: "8.0.0",
        complexity: "O(1)",
        summary: "How many dimensions the vectors in a vector set have.",
        group: "vector",
    },
    Spec {
        name: "VEMB",
        arity: -3,
        flags: VECTOR_READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_NONE,
        since: "8.0.0",
        complexity: "O(D) with D the dimension",
        summary: "The vector an element went in with.",
        group: "vector",
    },
    Spec {
        name: "VINFO",
        arity: 2,
        flags: VECTOR_READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_NONE,
        since: "8.0.0",
        complexity: "O(N) with N the elements, for the attribute count",
        summary: "What a vector set is and how its index is tuned.",
        group: "vector",
    },
    Spec {
        name: "VISMEMBER",
        arity: 3,
        flags: VECTOR_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_NONE,
        since: "8.0.0",
        complexity: "O(1)",
        summary: "Whether an element is in a vector set.",
        group: "vector",
    },
    Spec {
        name: "VRANDMEMBER",
        arity: -2,
        flags: VECTOR_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_NONE,
        since: "8.0.0",
        complexity: "O(1) for one, O(N) for a positive count",
        summary: "Random elements of a vector set.",
        group: "vector",
    },
    Spec {
        name: "VLINKS",
        arity: -3,
        flags: VECTOR_READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_NONE,
        since: "8.0.0",
        complexity: "O(P*D) with P the partitions probed and D the dimension",
        summary: "The elements an element is stored next to.",
        group: "vector",
    },
    Spec {
        name: "VSETATTR",
        arity: 4,
        flags: VECTOR_WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_NONE,
        since: "8.0.0",
        complexity: "O(1)",
        summary: "Set the attribute string on an element, or clear it.",
        group: "vector",
    },
    Spec {
        name: "VGETATTR",
        arity: 3,
        flags: VECTOR_READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_NONE,
        since: "8.0.0",
        complexity: "O(1)",
        summary: "The attribute string on an element.",
        group: "vector",
    },
    Spec {
        name: "VRANGE",
        arity: -4,
        flags: VECTOR_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_NONE,
        since: "8.4.0",
        complexity: "O(N log N) with N the elements the range covers",
        summary: "The elements of a vector set whose names fall in a range.",
        group: "vector",
    },
    // -------------------------------------------------------------- search
    //
    // Most of these carry no key spec, and the three zeros are the module's own
    // answer rather than a gap here. An index name is not a key: it is not in
    // the keyspace, `TYPE` has nothing to say about it, and a cluster client has
    // nothing to route on. The suggestion family and four of the five deprecated
    // document commands do name real keys and say so. `FT.MGET` is the odd one:
    // it names as many keys as a client cares to send and reports none of them,
    // which is the module's answer and is copied rather than tidied up.
    Spec {
        name: "FT.CREATE",
        arity: -5,
        flags: SEARCH_WRITE_OOM,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH,
        since: "1.0.0",
        complexity: "O(K) with K the fields declared, plus O(N) over the keyspace when the initial scan runs",
        summary: "Create an index over the keys with a prefix, with the given schema.",
        group: "search",
    },
    Spec {
        name: "FT._CREATEIFNX",
        arity: -5,
        flags: SEARCH_WRITE_OOM,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH,
        since: "1.0.0",
        complexity: "O(K) with K the fields declared, plus O(N) over the keyspace when the initial scan runs",
        summary: "Create an index, and say nothing if one of that name is already there.",
        group: "search",
    },
    Spec {
        name: "FT.ALTER",
        arity: -6,
        flags: SEARCH_WRITE_OOM,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH,
        since: "1.0.0",
        complexity: "O(N) over the keys the index follows, when the fields are backfilled",
        summary: "Add fields to an index's schema.",
        group: "search",
    },
    Spec {
        name: "FT._ALTERIFNX",
        arity: -6,
        flags: SEARCH_WRITE_OOM,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH,
        since: "1.0.0",
        complexity: "O(N) over the keys the index follows, when the fields are backfilled",
        summary: "Add fields to a schema, and say nothing about the ones already there.",
        group: "search",
    },
    Spec {
        name: "FT.DROPINDEX",
        arity: -2,
        flags: SEARCH_WRITE,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH_DROP,
        since: "2.0.0",
        complexity: "O(1), or O(N) over the documents when DD is given",
        summary: "Take an index away, and its documents with it when DD is given.",
        group: "search",
    },
    Spec {
        name: "FT._DROPINDEXIFX",
        arity: -2,
        flags: SEARCH_WRITE,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH_DROP,
        since: "2.0.0",
        complexity: "O(1), or O(N) over the documents when DD is given",
        summary: "Take an index away, and say nothing when there is none of that name.",
        group: "search",
    },
    Spec {
        name: "FT.DROP",
        arity: -1,
        flags: SEARCH_WRITE,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH_DROP,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Take an index away. Deprecated, and FT.DROPINDEX is the name to use.",
        group: "search",
    },
    Spec {
        name: "FT._DROPIFX",
        arity: -1,
        flags: SEARCH_WRITE,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH_WRITE,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Take an index away and say nothing when there is none. Deprecated.",
        group: "search",
    },
    Spec {
        name: "FT.INFO",
        arity: 2,
        flags: SEARCH_READ,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Everything the server knows about one index.",
        group: "search",
    },
    Spec {
        name: "FT._LIST",
        arity: -1,
        flags: SEARCH_READ,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH_LIST,
        since: "2.0.0",
        complexity: "O(N) with N the indexes on the server",
        summary: "Every index on the server, by name.",
        group: "search",
    },
    Spec {
        name: "FT.CONFIG",
        arity: -2,
        flags: SEARCH_READ,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH_ADMIN,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Read, write or describe the search module's settings.",
        group: "search",
    },
    Spec {
        name: "_FT.DEBUG",
        arity: -2,
        flags: SEARCH_READ,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH_DEBUG,
        since: "1.0.0",
        complexity: "O(N) with N the size of whatever is being dumped.",
        summary: "Read an index's own structures back.",
        group: "search",
    },
    Spec {
        name: "FT.ALIASADD",
        arity: 3,
        flags: SEARCH_WRITE_OOM,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Point another name at an index.",
        group: "search",
    },
    Spec {
        name: "FT._ALIASADDIFNX",
        arity: 3,
        flags: SEARCH_WRITE_OOM,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Point another name at an index, and say nothing if it is taken.",
        group: "search",
    },
    Spec {
        name: "FT.ALIASDEL",
        arity: 2,
        flags: SEARCH_WRITE,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Take an alias away.",
        group: "search",
    },
    Spec {
        name: "FT._ALIASDELIFX",
        arity: 2,
        flags: SEARCH_WRITE,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Take an alias away, and say nothing when there is none.",
        group: "search",
    },
    Spec {
        name: "FT.ALIASUPDATE",
        arity: 3,
        flags: SEARCH_WRITE_OOM,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Move an alias to another index, adding it when it was not there.",
        group: "search",
    },
    Spec {
        name: "FT.ALIASLIST",
        arity: 2,
        flags: SEARCH_READ,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH,
        since: "8.10.0",
        complexity: "O(N) with N the aliases pointing at the index",
        summary: "The aliases pointing at one index.",
        group: "search",
    },
    Spec {
        name: "FT.SEARCH",
        arity: -3,
        flags: SEARCH_READ,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH,
        since: "1.0.0",
        complexity: "O(N) with N the documents the query matches",
        summary: "The documents a query answers, with their fields.",
        group: "search",
    },
    Spec {
        name: "FT.AGGREGATE",
        arity: -3,
        flags: SEARCH_READ,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH,
        since: "1.1.0",
        complexity: "O(N) with N the documents the query matches",
        summary: "The properties a query answers, run through a pipeline.",
        group: "search",
    },
    Spec {
        name: "FT.HYBRID",
        arity: -7,
        flags: SEARCH_READ,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH,
        since: "8.4.0",
        complexity: "O(N) with N the documents either branch matches",
        summary: "A text query and a vector query over one index, folded into one ranking.",
        group: "search",
    },
    Spec {
        name: "FT.PROFILE",
        arity: -5,
        flags: SEARCH_READ,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH_READ,
        since: "2.2.0",
        complexity: "O(N) with N the documents the query matches",
        summary: "A search or an aggregation with the working shown.",
        group: "search",
    },
    Spec {
        name: "FT.CURSOR",
        arity: -2,
        flags: SEARCH_READ,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH,
        since: "1.1.0",
        complexity: "O(1)",
        summary: "The next chunk of an answer a cursor was left open on.",
        group: "search",
    },
    Spec {
        name: "FT.EXPLAIN",
        arity: -3,
        flags: SEARCH_READ,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "The tree a query parses into, as text.",
        group: "search",
    },
    Spec {
        name: "FT.EXPLAINCLI",
        arity: -3,
        flags: SEARCH_READ,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "The tree a query parses into, one line per reply element.",
        group: "search",
    },
    Spec {
        name: "FT.TAGVALS",
        arity: 3,
        flags: SEARCH_READ,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH_TAGS,
        since: "1.0.0",
        complexity: "O(N)",
        summary: "Every distinct value a tag field holds.",
        group: "search",
    },
    Spec {
        name: "FT.DICTADD",
        arity: -3,
        flags: SEARCH_WRITE_OOM,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH,
        since: "1.4.0",
        complexity: "O(1)",
        summary: "Put terms into a dictionary, making it if it is not there.",
        group: "search",
    },
    Spec {
        name: "FT.DICTDEL",
        arity: -3,
        flags: SEARCH_WRITE,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH,
        since: "1.4.0",
        complexity: "O(1)",
        summary: "Take terms back out of a dictionary.",
        group: "search",
    },
    Spec {
        name: "FT.DICTDUMP",
        arity: 2,
        flags: SEARCH_READ,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH,
        since: "1.4.0",
        complexity: "O(N)",
        summary: "Every term in a dictionary.",
        group: "search",
    },
    Spec {
        name: "FT.SYNUPDATE",
        arity: -4,
        flags: SEARCH_WRITE_OOM,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH,
        since: "1.2.0",
        complexity: "O(1)",
        summary: "Put terms in a synonym group.",
        group: "search",
    },
    Spec {
        name: "FT.SYNDUMP",
        arity: 2,
        flags: SEARCH_READ,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH,
        since: "1.2.0",
        complexity: "O(1)",
        summary: "Every term an index treats as a synonym, and the groups it is in.",
        group: "search",
    },
    Spec {
        name: "FT.SPELLCHECK",
        arity: -3,
        flags: SEARCH_READ,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH,
        since: "1.4.0",
        complexity: "O(1)",
        summary: "Suggestions for the words in a query the index does not hold.",
        group: "search",
    },
    Spec {
        name: "FT.ADD",
        arity: -1,
        flags: SEARCH_WRITE_OOM,
        first_key: 2,
        last_key: 2,
        step: 1,
        acl: AC_SEARCH_WRITE,
        since: "1.0.0",
        complexity: "O(N) with N the tokens in the document",
        summary: "Write a hash and record what the index should think it is worth.",
        group: "search",
    },
    Spec {
        name: "FT.SAFEADD",
        arity: -1,
        flags: SEARCH_WRITE_OOM,
        first_key: 2,
        last_key: 2,
        step: 1,
        acl: AC_SEARCH_WRITE,
        since: "1.0.0",
        complexity: "O(N) with N the tokens in the document",
        summary: "The same write, under the name a cluster client used to send.",
        group: "search",
    },
    Spec {
        name: "FT.GET",
        arity: -1,
        flags: SEARCH_READ,
        first_key: 2,
        last_key: 2,
        step: 1,
        acl: AC_SEARCH_READ,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "The hash under a key, when the index is holding it.",
        group: "search",
    },
    Spec {
        name: "FT.MGET",
        arity: -1,
        flags: SEARCH_READ,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SEARCH_READ,
        since: "1.0.0",
        complexity: "O(N) with N the keys asked about",
        summary: "The same, for as many keys as were named.",
        group: "search",
    },
    Spec {
        name: "FT.DEL",
        arity: -1,
        flags: SEARCH_WRITE,
        first_key: 2,
        last_key: 2,
        step: 1,
        acl: AC_SEARCH_WRITE,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Delete a key, with an index name in front of it.",
        group: "search",
    },
    Spec {
        name: "FT.SUGADD",
        arity: -4,
        flags: SEARCH_WRITE_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_SEARCH_WRITE,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Put a suggestion in a dictionary, or change the one that is there.",
        group: "search",
    },
    Spec {
        name: "FT.SUGGET",
        arity: -3,
        flags: SEARCH_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_SEARCH_READ,
        since: "1.0.0",
        complexity: "O(N) with N the suggestions the prefix reaches",
        summary: "The best suggestions starting with a prefix.",
        group: "search",
    },
    Spec {
        name: "FT.SUGDEL",
        arity: 3,
        flags: SEARCH_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_SEARCH_WRITE,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Take a suggestion out of a dictionary.",
        group: "search",
    },
    Spec {
        name: "FT.SUGLEN",
        arity: 2,
        flags: SEARCH_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_SEARCH_READ,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "How many suggestions a dictionary holds.",
        group: "search",
    },
    // --------------------------------------------------------------- bloom
    Spec {
        name: "bf.reserve",
        arity: -4,
        flags: BLOOM_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_BLOOM_WRITE_FAST,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Make an empty filter with a given capacity and error rate.",
        group: "bloom",
    },
    Spec {
        name: "bf.add",
        arity: 3,
        flags: BLOOM_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_BLOOM_WRITE,
        since: "1.0.0",
        complexity: "O(K) with K the number of hash functions",
        summary: "Add an item, making the filter if the key is free.",
        group: "bloom",
    },
    Spec {
        name: "bf.madd",
        arity: -3,
        flags: BLOOM_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_BLOOM_WRITE,
        since: "1.0.0",
        complexity: "O(N * K) with N the number of items",
        summary: "Add several items, making the filter if the key is free.",
        group: "bloom",
    },
    Spec {
        name: "bf.insert",
        arity: -4,
        flags: BLOOM_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_BLOOM_WRITE,
        since: "1.0.0",
        complexity: "O(N * K) with N the number of items",
        summary: "Add several items to a filter described in the same command.",
        group: "bloom",
    },
    Spec {
        name: "bf.exists",
        arity: 3,
        flags: BLOOM_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_BLOOM_READ,
        since: "1.0.0",
        complexity: "O(K) with K the number of hash functions",
        summary: "Whether an item is probably in the filter.",
        group: "bloom",
    },
    Spec {
        name: "bf.mexists",
        arity: -3,
        flags: BLOOM_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_BLOOM_READ,
        since: "1.0.0",
        complexity: "O(N * K) with N the number of items",
        summary: "Whether each of several items is probably in the filter.",
        group: "bloom",
    },
    Spec {
        name: "bf.scandump",
        arity: 3,
        flags: BLOOM_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_BLOOM_READ,
        since: "1.0.0",
        complexity: "O(N) with N the size of the chunk",
        summary: "One chunk of the filter, to be replayed into BF.LOADCHUNK.",
        group: "bloom",
    },
    Spec {
        name: "bf.loadchunk",
        arity: 4,
        flags: BLOOM_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_BLOOM_WRITE,
        since: "1.0.0",
        complexity: "O(N) with N the size of the chunk",
        summary: "Put back a chunk that BF.SCANDUMP handed out.",
        group: "bloom",
    },
    Spec {
        name: "bf.info",
        arity: -2,
        flags: BLOOM_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_BLOOM_READ_FAST,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "The shape of the filter, or one field of it.",
        group: "bloom",
    },
    Spec {
        name: "bf.card",
        arity: 2,
        flags: BLOOM_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_BLOOM_READ_FAST,
        since: "2.4.4",
        complexity: "O(1)",
        summary: "How many items were added to the filter.",
        group: "bloom",
    },
    Spec {
        name: "bf.debug",
        arity: 2,
        flags: BLOOM_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_BLOOM_READ,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "The chain and a line for each of its links.",
        group: "bloom",
    },
    // -------------------------------------------------------------- cuckoo
    Spec {
        name: "cf.reserve",
        arity: -3,
        flags: CUCKOO_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_CUCKOO_WRITE_FAST,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Make an empty filter with a given capacity.",
        group: "cuckoo",
    },
    Spec {
        name: "cf.add",
        arity: 3,
        flags: CUCKOO_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_CUCKOO_WRITE,
        since: "1.0.0",
        complexity: "O(1) amortised, O(N) when the chain has to grow",
        summary: "Add an item, making the filter if the key is free.",
        group: "cuckoo",
    },
    Spec {
        name: "cf.addnx",
        arity: 3,
        flags: CUCKOO_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_CUCKOO_WRITE,
        since: "1.0.0",
        complexity: "O(1) amortised, O(N) when the chain has to grow",
        summary: "Add an item unless the filter already has it.",
        group: "cuckoo",
    },
    Spec {
        name: "cf.insert",
        arity: -4,
        flags: CUCKOO_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_CUCKOO_WRITE,
        since: "1.0.0",
        complexity: "O(N) with N the number of items",
        summary: "Add several items to a filter described in the same command.",
        group: "cuckoo",
    },
    Spec {
        name: "cf.insertnx",
        arity: -4,
        flags: CUCKOO_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_CUCKOO_WRITE,
        since: "1.0.0",
        complexity: "O(N) with N the number of items",
        summary: "Add several items the filter does not already have.",
        group: "cuckoo",
    },
    Spec {
        name: "cf.exists",
        arity: 3,
        flags: CUCKOO_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_CUCKOO_READ,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Whether an item is probably in the filter.",
        group: "cuckoo",
    },
    Spec {
        name: "cf.mexists",
        arity: -3,
        flags: CUCKOO_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_CUCKOO_READ,
        since: "1.0.0",
        complexity: "O(N) with N the number of items",
        summary: "Whether each of several items is probably in the filter.",
        group: "cuckoo",
    },
    Spec {
        name: "cf.count",
        arity: 3,
        flags: CUCKOO_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_CUCKOO_READ,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "How many copies of an item the filter thinks it has.",
        group: "cuckoo",
    },
    Spec {
        name: "cf.del",
        arity: 3,
        flags: CUCKOO_DELETE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_CUCKOO_WRITE,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Take one copy of an item out of the filter.",
        group: "cuckoo",
    },
    Spec {
        name: "cf.scandump",
        arity: 3,
        flags: CUCKOO_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_CUCKOO_READ,
        since: "1.0.0",
        complexity: "O(N) with N the size of the chunk",
        summary: "One chunk of the filter, to be replayed into CF.LOADCHUNK.",
        group: "cuckoo",
    },
    Spec {
        name: "cf.loadchunk",
        arity: 4,
        flags: CUCKOO_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_CUCKOO_WRITE,
        since: "1.0.0",
        complexity: "O(N) with N the size of the chunk",
        summary: "Put back a chunk that CF.SCANDUMP handed out.",
        group: "cuckoo",
    },
    Spec {
        name: "cf.info",
        arity: 2,
        flags: CUCKOO_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_CUCKOO_READ_FAST,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "The shape of the chain.",
        group: "cuckoo",
    },
    Spec {
        name: "cf.debug",
        arity: 2,
        flags: CUCKOO_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_CUCKOO_READ,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "The chain's geometry on one line.",
        group: "cuckoo",
    },
    Spec {
        name: "cf.compact",
        arity: -1,
        flags: CUCKOO_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_CUCKOO_READ,
        since: "1.0.0",
        complexity: "O(N) with N the number of items in the newer filters",
        summary: "Pull the newer filters down into the older ones.",
        group: "cuckoo",
    },
    // ----------------------------------------------------------------- cms
    Spec {
        name: "cms.initbydim",
        arity: 4,
        flags: CMS_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_CMS_WRITE_FAST,
        since: "2.0.0",
        complexity: "O(1)",
        summary: "Make an empty sketch of a given width and depth.",
        group: "cms",
    },
    Spec {
        name: "cms.initbyprob",
        arity: 4,
        flags: CMS_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_CMS_WRITE_FAST,
        since: "2.0.0",
        complexity: "O(1)",
        summary: "Make an empty sketch wide enough for a stated tolerance.",
        group: "cms",
    },
    Spec {
        name: "cms.incrby",
        arity: -4,
        flags: CMS_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_CMS_WRITE,
        since: "2.0.0",
        complexity: "O(N) with N the number of items",
        summary: "Add to the count of one or more items.",
        group: "cms",
    },
    Spec {
        name: "cms.query",
        arity: -3,
        flags: CMS_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_CMS_READ,
        since: "2.0.0",
        complexity: "O(N) with N the number of items",
        summary: "How many times the sketch has seen each item.",
        group: "cms",
    },
    Spec {
        name: "cms.merge",
        arity: -4,
        flags: CMS_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_CMS_WRITE,
        since: "2.0.0",
        complexity: "O(N * M) with N the sources and M the counters in one",
        summary: "Replace a sketch with the weighted sum of others.",
        group: "cms",
    },
    Spec {
        name: "cms.info",
        arity: 2,
        flags: CMS_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_CMS_READ_FAST,
        since: "2.0.0",
        complexity: "O(1)",
        summary: "The width, the depth and everything ever added.",
        group: "cms",
    },
    // ---------------------------------------------------------------- topk
    Spec {
        name: "topk.reserve",
        arity: -3,
        flags: TOPK_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TOPK_WRITE_FAST,
        since: "2.0.0",
        complexity: "O(1)",
        summary: "Make an empty sketch that keeps the k commonest items.",
        group: "topk",
    },
    Spec {
        name: "topk.add",
        arity: -3,
        flags: TOPK_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TOPK_WRITE,
        since: "2.0.0",
        complexity: "O(N * K) with N the items and K the depth",
        summary: "Count one occurrence of each item.",
        group: "topk",
    },
    Spec {
        name: "topk.incrby",
        arity: -4,
        flags: TOPK_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TOPK_WRITE,
        since: "2.0.0",
        complexity: "O(N * K) with N the items and K the depth",
        summary: "Count a stated number of occurrences of each item.",
        group: "topk",
    },
    Spec {
        name: "topk.query",
        arity: -3,
        flags: TOPK_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TOPK_READ,
        since: "2.0.0",
        complexity: "O(N * K) with N the items and K the kept count",
        summary: "Whether each item is one of the ones being kept.",
        group: "topk",
    },
    Spec {
        name: "topk.count",
        arity: -3,
        flags: TOPK_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TOPK_READ,
        since: "2.0.0",
        complexity: "O(N * K) with N the items and K the depth",
        summary: "How many times the sketch thinks it has seen each item.",
        group: "topk",
    },
    Spec {
        name: "topk.list",
        arity: -2,
        flags: TOPK_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TOPK_READ,
        since: "2.0.0",
        complexity: "O(K log K) with K the kept count",
        summary: "The kept items, heaviest first.",
        group: "topk",
    },
    Spec {
        name: "topk.info",
        arity: 2,
        flags: TOPK_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TOPK_READ_FAST,
        since: "2.0.0",
        complexity: "O(1)",
        summary: "The four numbers the sketch was made with.",
        group: "topk",
    },
    // ------------------------------------------------------------- tdigest
    Spec {
        name: "tdigest.create",
        arity: -2,
        flags: TDIGEST_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TDIGEST_WRITE_FAST,
        since: "2.4.0",
        complexity: "O(1)",
        summary: "Make an empty digest of a stated compression.",
        group: "tdigest",
    },
    Spec {
        name: "tdigest.reset",
        arity: 2,
        flags: TDIGEST_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TDIGEST_WRITE_FAST,
        since: "2.4.0",
        complexity: "O(1)",
        summary: "Throw away every sample and keep the shape.",
        group: "tdigest",
    },
    Spec {
        name: "tdigest.add",
        arity: -3,
        flags: TDIGEST_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TDIGEST_WRITE,
        since: "2.4.0",
        complexity: "O(N) with N the number of samples",
        summary: "Add samples of weight one each.",
        group: "tdigest",
    },
    Spec {
        name: "tdigest.merge",
        arity: -4,
        flags: TDIGEST_MERGE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TDIGEST_WRITE,
        since: "2.4.0",
        complexity: "O(N) with N the number of centroids in the inputs",
        summary: "Fold digests together into one.",
        group: "tdigest",
    },
    Spec {
        name: "tdigest.min",
        arity: 2,
        flags: TDIGEST_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TDIGEST_READ_FAST,
        since: "2.4.0",
        complexity: "O(1)",
        summary: "The smallest sample ever added.",
        group: "tdigest",
    },
    Spec {
        name: "tdigest.max",
        arity: 2,
        flags: TDIGEST_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TDIGEST_READ_FAST,
        since: "2.4.0",
        complexity: "O(1)",
        summary: "The largest sample ever added.",
        group: "tdigest",
    },
    Spec {
        name: "tdigest.quantile",
        arity: -3,
        flags: TDIGEST_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TDIGEST_READ_FAST,
        since: "2.4.0",
        complexity: "O(N) with N the number of centroids",
        summary: "The value each fraction of the samples falls under.",
        group: "tdigest",
    },
    Spec {
        name: "tdigest.cdf",
        arity: -3,
        flags: TDIGEST_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TDIGEST_READ_FAST,
        since: "2.4.0",
        complexity: "O(N) with N the number of centroids",
        summary: "The fraction of the samples at or below each value.",
        group: "tdigest",
    },
    Spec {
        name: "tdigest.trimmed_mean",
        arity: 4,
        flags: TDIGEST_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TDIGEST_READ,
        since: "2.4.0",
        complexity: "O(N) with N the number of centroids",
        summary: "The mean of what is left once both tails are cut.",
        group: "tdigest",
    },
    Spec {
        name: "tdigest.rank",
        arity: -3,
        flags: TDIGEST_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TDIGEST_READ_FAST,
        since: "2.4.0",
        complexity: "O(N) with N the number of centroids",
        summary: "How many samples each value is above.",
        group: "tdigest",
    },
    Spec {
        name: "tdigest.revrank",
        arity: -3,
        flags: TDIGEST_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TDIGEST_READ_FAST,
        since: "2.4.0",
        complexity: "O(N) with N the number of centroids",
        summary: "How many samples each value is below.",
        group: "tdigest",
    },
    Spec {
        name: "tdigest.byrank",
        arity: -3,
        flags: TDIGEST_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TDIGEST_READ_FAST,
        since: "2.4.0",
        complexity: "O(N) with N the number of centroids",
        summary: "The value at each rank counting up from the smallest.",
        group: "tdigest",
    },
    Spec {
        name: "tdigest.byrevrank",
        arity: -3,
        flags: TDIGEST_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TDIGEST_READ_FAST,
        since: "2.4.0",
        complexity: "O(N) with N the number of centroids",
        summary: "The value at each rank counting down from the largest.",
        group: "tdigest",
    },
    Spec {
        name: "tdigest.info",
        arity: 2,
        flags: TDIGEST_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TDIGEST_READ_FAST,
        since: "2.4.0",
        complexity: "O(1)",
        summary: "The nine numbers the digest keeps about itself.",
        group: "tdigest",
    },
    // ------------------------------------------------------------------ ts
    Spec {
        name: "ts.create",
        arity: -2,
        flags: TS_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TS_WRITE_FAST,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Make an empty series and say how it should behave.",
        group: "ts",
    },
    Spec {
        name: "ts.alter",
        arity: -2,
        flags: TS_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TS_WRITE,
        since: "1.0.0",
        complexity: "O(N) with N the labels being set",
        summary: "Change how a series behaves, leaving what was not named alone.",
        group: "ts",
    },
    Spec {
        name: "ts.add",
        arity: -4,
        flags: TS_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TS_WRITE,
        since: "1.0.0",
        complexity: "O(M) with M the samples in the chunk a backfill lands in",
        summary: "Put a sample in, making the series if it is not there.",
        group: "ts",
    },
    Spec {
        name: "ts.madd",
        arity: -4,
        flags: TS_WRITE,
        first_key: 1,
        last_key: -1,
        step: 3,
        acl: AC_TS_WRITE,
        since: "1.0.0",
        complexity: "O(N * M) with N the samples given",
        summary: "Put a sample in each of several series.",
        group: "ts",
    },
    Spec {
        name: "ts.incrby",
        arity: -3,
        flags: TS_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TS_WRITE,
        since: "1.0.0",
        complexity: "O(M) with M the samples in the last chunk",
        summary: "Add to the newest value and store the answer.",
        group: "ts",
    },
    Spec {
        name: "ts.decrby",
        arity: -3,
        flags: TS_WRITE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TS_WRITE,
        since: "1.0.0",
        complexity: "O(M) with M the samples in the last chunk",
        summary: "Take away from the newest value and store the answer.",
        group: "ts",
    },
    Spec {
        name: "ts.del",
        arity: 4,
        flags: TS_DELETE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TS_WRITE,
        since: "1.6.0",
        complexity: "O(N) with N the samples in the span",
        summary: "Take out every sample between two timestamps.",
        group: "ts",
    },
    Spec {
        name: "ts.get",
        arity: -2,
        flags: TS_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TS_READ_FAST,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "The newest sample in a series.",
        group: "ts",
    },
    Spec {
        name: "ts.info",
        arity: -2,
        flags: TS_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TS_READ_FAST,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "The fourteen things a series says about itself.",
        group: "ts",
    },
    Spec {
        name: "ts.range",
        arity: -4,
        flags: TS_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TS_READ,
        since: "1.0.0",
        complexity: "O(n/m+k) with n the samples, m the chunk size and k the samples in the span",
        summary: "The samples in a span, oldest first, in buckets if asked for.",
        group: "ts",
    },
    Spec {
        name: "ts.revrange",
        arity: -4,
        flags: TS_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TS_READ,
        since: "1.4.0",
        complexity: "O(n/m+k) with n the samples, m the chunk size and k the samples in the span",
        summary: "The same span, newest first.",
        group: "ts",
    },
    Spec {
        name: "ts.nrange",
        arity: -5,
        flags: TS_READ_MOVABLE,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_TS_READ,
        since: "8.10.0",
        complexity: "O(n/m+k) with n the samples, m the chunk size and k the samples in the span",
        summary: "The same span out of several series, lined up on the timestamps.",
        group: "ts",
    },
    Spec {
        name: "ts.nrevrange",
        arity: -5,
        flags: TS_READ_MOVABLE,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_TS_READ,
        since: "8.10.0",
        complexity: "O(n/m+k) with n the samples, m the chunk size and k the samples in the span",
        summary: "The same rows, newest first.",
        group: "ts",
    },
    Spec {
        name: "ts.read",
        arity: -3,
        flags: TS_READ,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_TS_READ,
        since: "8.10.0",
        complexity: "O(n/m+k) with n the samples, m the chunk size and k the samples answered",
        summary: "Every sample from a timestamp to the end of the series.",
        group: "ts",
    },
    Spec {
        name: "ts.queryindex",
        arity: -2,
        flags: TS_READ,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_TS_READ,
        since: "1.0.0",
        complexity: "O(n) with n the series in the keyspace",
        summary: "The series a filter list takes, by key name.",
        group: "ts",
    },
    Spec {
        name: "ts.querylabels",
        arity: -2,
        flags: TS_READ,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_TS_READ,
        since: "8.10.0",
        complexity: "O(n) with n the series in the keyspace",
        summary: "The label names in use, or the values one of them takes.",
        group: "ts",
    },
    Spec {
        name: "ts.mget",
        arity: -3,
        flags: TS_READ,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_TS_READ,
        since: "1.0.0",
        complexity: "O(n) with n the series in the keyspace",
        summary: "The newest sample of every series a filter list takes.",
        group: "ts",
    },
    Spec {
        name: "ts.mrange",
        arity: -4,
        flags: TS_READ,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_TS_READ,
        since: "1.0.0",
        complexity: "O(n) with n the series in the keyspace",
        summary: "A span out of every series a filter list takes, oldest first.",
        group: "ts",
    },
    Spec {
        name: "ts.mrevrange",
        arity: -4,
        flags: TS_READ,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_TS_READ,
        since: "1.4.0",
        complexity: "O(n) with n the series in the keyspace",
        summary: "The same spans, newest first.",
        group: "ts",
    },
    Spec {
        name: "ts.createrule",
        arity: -5,
        flags: TS_RULE,
        first_key: 1,
        last_key: 2,
        step: 1,
        acl: AC_TS_WRITE,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Fold one series into another as it is written to.",
        group: "ts",
    },
    Spec {
        name: "ts.deleterule",
        arity: 3,
        flags: TS_DELETE,
        first_key: 1,
        last_key: 2,
        step: 1,
        acl: AC_TS_WRITE_FAST,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Stop folding one series into another.",
        group: "ts",
    },
    // --------------------------------------------------------------- array
    Spec {
        name: "arset",
        arity: -4,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ARRAY_WRITE_FAST,
        since: "8.8.0",
        complexity: "O(N) with N the number of values",
        summary: "Write values into consecutive positions from an index.",
        group: "array",
    },
    Spec {
        name: "armset",
        arity: -4,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ARRAY_WRITE_FAST,
        since: "8.8.0",
        complexity: "O(N) with N the number of pairs",
        summary: "Write index and value pairs, which need not be neighbours.",
        group: "array",
    },
    Spec {
        name: "arget",
        arity: 3,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ARRAY_READ_FAST,
        since: "8.8.0",
        complexity: "O(1)",
        summary: "The value at one index, or a null if nothing is there.",
        group: "array",
    },
    Spec {
        name: "armget",
        arity: -3,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ARRAY_READ_FAST,
        since: "8.8.0",
        complexity: "O(N) with N the number of indices",
        summary: "The values at the indices named, in the order named.",
        group: "array",
    },
    Spec {
        name: "argetrange",
        arity: 4,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ARRAY_READ_SLOW,
        since: "8.8.0",
        complexity: "O(N) with N the length of the range",
        summary: "One reply per position between two indices, holes included.",
        group: "array",
    },
    Spec {
        name: "arlen",
        arity: 2,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ARRAY_READ_FAST,
        since: "8.8.0",
        complexity: "O(1)",
        summary: "The highest populated index plus one.",
        group: "array",
    },
    Spec {
        name: "arcount",
        arity: 2,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ARRAY_READ_FAST,
        since: "8.8.0",
        complexity: "O(1)",
        summary: "How many indices hold something.",
        group: "array",
    },
    Spec {
        name: "ardel",
        arity: -3,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ARRAY_WRITE_FAST,
        since: "8.8.0",
        complexity: "O(N) with N the number of indices",
        summary: "Empty the indices named and say how many held something.",
        group: "array",
    },
    Spec {
        name: "ardelrange",
        arity: -4,
        flags: WRITE_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ARRAY_WRITE_SLOW,
        since: "8.8.0",
        complexity: "O(N) with N the elements touched, not the span asked for",
        summary: "Empty one or more ranges of indices.",
        group: "array",
    },
    Spec {
        name: "arinsert",
        arity: -3,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ARRAY_WRITE_FAST,
        since: "8.8.0",
        complexity: "O(N) with N the number of values",
        summary: "Append values at the insert cursor.",
        group: "array",
    },
    Spec {
        name: "arring",
        arity: -4,
        flags: WRITE_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ARRAY_WRITE_SLOW,
        since: "8.8.0",
        complexity: "O(N) with N the values, plus the ring size when it changes",
        summary: "Append values into a ring of the given size.",
        group: "array",
    },
    Spec {
        name: "arnext",
        arity: 2,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ARRAY_READ_FAST,
        since: "8.8.0",
        complexity: "O(1)",
        summary: "The index the next append would write to.",
        group: "array",
    },
    Spec {
        name: "arseek",
        arity: 3,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ARRAY_WRITE_FAST,
        since: "8.8.0",
        complexity: "O(1)",
        summary: "Point the insert cursor at an index.",
        group: "array",
    },
    Spec {
        name: "arlastitems",
        arity: -3,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ARRAY_READ_SLOW,
        since: "8.8.0",
        complexity: "O(N) with N the count asked for",
        summary: "The newest positions from the insert cursor, holes included.",
        group: "array",
    },
    Spec {
        name: "arscan",
        arity: -4,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ARRAY_READ_SLOW,
        since: "8.8.0",
        complexity: "O(N) with N the elements found, not the span asked for",
        summary: "Index and value pairs for what a range holds, skipping holes.",
        group: "array",
    },
    Spec {
        name: "argrep",
        arity: -6,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ARRAY_READ_SLOW,
        since: "8.8.0",
        complexity: "O(P * C) with P the positions visited and C the cost of the predicates on one element",
        summary: "The indexes in a range whose elements answer a set of textual predicates.",
        group: "array",
    },
    Spec {
        name: "arop",
        arity: -5,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ARRAY_READ_SLOW,
        since: "8.8.0",
        complexity: "O(N) with N the elements found, not the span asked for",
        summary: "One number out of a range, added up or compared or counted.",
        group: "array",
    },
    Spec {
        name: "arinfo",
        arity: -2,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_ARRAY_READ_SLOW,
        since: "8.8.0",
        complexity: "O(1), or O(N) with N the slices when FULL is given",
        summary: "The shape of the array, and what its slices look like.",
        group: "array",
    },
    // ------------------------------------------------------------- streams
    Spec {
        name: "xadd",
        arity: -5,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_STREAM_WRITE_FAST,
        since: "5.0.0",
        complexity: "O(1) for the append, plus what a trim removes.",
        summary: "Append an entry and answer with the ID it got.",
        group: "stream",
    },
    Spec {
        name: "xlen",
        arity: 2,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_STREAM_READ_FAST,
        since: "5.0.0",
        complexity: "O(1)",
        summary: "How many entries the stream holds.",
        group: "stream",
    },
    Spec {
        name: "xdel",
        arity: -3,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_STREAM_WRITE_FAST,
        since: "5.0.0",
        complexity: "O(1) per ID.",
        summary: "Remove entries by ID and say how many were there.",
        group: "stream",
    },
    Spec {
        name: "xdelex",
        arity: -5,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_STREAM_WRITE_FAST,
        since: "8.2.0",
        complexity: "O(1) per ID.",
        summary: "Remove entries by ID, saying what to do about the groups.",
        group: "stream",
    },
    Spec {
        name: "xackdel",
        arity: -6,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_STREAM_WRITE_FAST,
        since: "8.2.0",
        complexity: "O(1) per ID.",
        summary: "Acknowledge entries for a group and remove them.",
        group: "stream",
    },
    Spec {
        name: "xnack",
        arity: -7,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_STREAM_WRITE_FAST,
        since: "8.8.0",
        complexity: "O(1) per ID.",
        summary: "Give entries back to the group for somebody else to claim.",
        group: "stream",
    },
    Spec {
        name: "xtrim",
        arity: -4,
        flags: WRITE_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_STREAM_WRITE_SLOW,
        since: "5.0.0",
        complexity: "O(N) in the entries removed.",
        summary: "Cut the stream down to a length or a minimum ID.",
        group: "stream",
    },
    Spec {
        name: "xrange",
        arity: -4,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_STREAM_READ_SLOW,
        since: "5.0.0",
        complexity: "O(N) in the entries returned.",
        summary: "The entries between two IDs, oldest first.",
        group: "stream",
    },
    Spec {
        name: "xrevrange",
        arity: -4,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_STREAM_READ_SLOW,
        since: "5.0.0",
        complexity: "O(N) in the entries returned.",
        summary: "The entries between two IDs, newest first.",
        group: "stream",
    },
    Spec {
        name: "xread",
        arity: -4,
        flags: READ_BLOCKING_MOVABLE,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_STREAM_BLOCKING_READ,
        since: "5.0.0",
        complexity: "O(N) in the entries returned.",
        summary: "Read from one or more streams, waiting if asked to.",
        group: "stream",
    },
    Spec {
        name: "xreadgroup",
        arity: -7,
        flags: WRITE_BLOCKING_MOVABLE,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_STREAM_BLOCKING_WRITE,
        since: "5.0.0",
        complexity: "O(N) in the entries returned.",
        summary: "Read as part of a consumer group, waiting if asked to.",
        group: "stream",
    },
    Spec {
        name: "xack",
        arity: -4,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_STREAM_WRITE_FAST,
        since: "5.0.0",
        complexity: "O(1) per ID.",
        summary: "Drop entries from a group's pending list.",
        group: "stream",
    },
    Spec {
        name: "xsetid",
        arity: -3,
        flags: WRITE_FAST_OOM,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_STREAM_WRITE_FAST,
        since: "5.0.0",
        complexity: "O(1)",
        summary: "Set the last ID, the entries added and the max deleted ID.",
        group: "stream",
    },
    Spec {
        name: "xgroup",
        arity: -2,
        flags: &[],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_STREAM_CONTAINER,
        since: "5.0.0",
        complexity: "O(1) for all subcommands except DESTROY, which frees the group's pending list.",
        summary: "Make, move and unmake consumer groups.",
        group: "stream",
    },
    Spec {
        name: "xinfo",
        arity: -2,
        flags: &[],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_STREAM_CONTAINER,
        since: "5.0.0",
        complexity: "O(1), or O(N) with N the entries and pending entries shown when FULL is given.",
        summary: "What a stream, its groups and its consumers look like.",
        group: "stream",
    },
    Spec {
        name: "xpending",
        arity: -3,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_STREAM_READ_SLOW,
        since: "5.0.0",
        complexity: "O(1) for the summary, O(N) in the entries returned for the list.",
        summary: "What a group has handed out and not had acknowledged.",
        group: "stream",
    },
    Spec {
        name: "xclaim",
        arity: -6,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_STREAM_WRITE_FAST,
        since: "5.0.0",
        complexity: "O(1) per ID.",
        summary: "Move named pending entries to another consumer.",
        group: "stream",
    },
    Spec {
        name: "xautoclaim",
        arity: -6,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_STREAM_WRITE_FAST,
        since: "6.2.0",
        complexity: "O(1) per entry claimed, plus what it skips getting there.",
        summary: "Sweep a group's pending list and take what has gone idle.",
        group: "stream",
    },
    // ------------------------------------------------------------ keyspace
    Spec {
        name: "del",
        arity: -2,
        flags: &["write"],
        first_key: 1,
        last_key: -1,
        step: 1,
        acl: AC_KEY_WRITE_SLOW,
        since: "1.0.0",
        complexity: "O(N) in the number of keys.",
        summary: "Delete keys and say how many were there.",
        group: "keyspace",
    },
    Spec {
        name: "unlink",
        arity: -2,
        flags: &["write", "fast"],
        first_key: 1,
        last_key: -1,
        step: 1,
        acl: AC_KEY_WRITE_FAST,
        since: "4.0.0",
        complexity: "O(1) per key, since the freeing is not on this thread.",
        summary: "Delete keys and free them out of the way of the reply.",
        group: "keyspace",
    },
    Spec {
        name: "exists",
        arity: -2,
        flags: READ_FAST,
        first_key: 1,
        last_key: -1,
        step: 1,
        acl: AC_KEY_READ,
        since: "1.0.0",
        complexity: "O(N) in the number of keys.",
        summary: "Count how many of these keys are there, naming one twice counting twice.",
        group: "keyspace",
    },
    Spec {
        name: "type",
        arity: 2,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_KEY_READ,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "What kind of value is under a key, or none.",
        group: "keyspace",
    },
    Spec {
        name: "touch",
        arity: -2,
        flags: READ_FAST,
        first_key: 1,
        last_key: -1,
        step: 1,
        acl: AC_KEY_READ,
        since: "3.2.1",
        complexity: "O(N) in the number of keys.",
        summary: "Count how many of these keys are there, and move them up the eviction order.",
        group: "keyspace",
    },
    // The three that look at keys nobody named. No key positions on any of
    // them, which is what the zeroes say, and it is also why a cluster client
    // sends them to a node rather than to a slot.
    Spec {
        name: "scan",
        arity: -2,
        flags: &["readonly"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_KEY_READ_SLOW,
        since: "2.8.0",
        complexity: "O(1) a call, O(N) for a whole iteration",
        summary: "Walk part of the keyspace and say where to carry on from.",
        group: "keyspace",
    },
    Spec {
        name: "keys",
        arity: 2,
        flags: &["readonly"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_KEY_READ_ALL,
        since: "1.0.0",
        complexity: "O(N) in the number of keys.",
        summary: "Every key matching a pattern, in one reply.",
        group: "keyspace",
    },
    Spec {
        name: "randomkey",
        arity: 1,
        flags: &["readonly"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_KEY_READ_SLOW,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "One key from the database, chosen at random.",
        group: "keyspace",
    },
    // Two keys and not one, which is the 1 2 1 in the key positions. Every other
    // row in this group names a range that runs to the end of the arguments.
    Spec {
        name: "rename",
        arity: 3,
        flags: &["write"],
        first_key: 1,
        last_key: 2,
        step: 1,
        acl: AC_KEY_WRITE_SLOW,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Move a key to another name, over whatever was there.",
        group: "keyspace",
    },
    Spec {
        name: "renamenx",
        arity: 3,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 2,
        step: 1,
        acl: AC_KEY_WRITE_FAST,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Move a key to another name, but only if that name is free.",
        group: "keyspace",
    },
    // `denyoom` and no `fast`, because this is the one command in the group that
    // allocates a whole second value.
    Spec {
        name: "copy",
        arity: -3,
        flags: &["write", "denyoom"],
        first_key: 1,
        last_key: 2,
        step: 1,
        acl: AC_KEY_WRITE_SLOW,
        since: "6.2.0",
        complexity: "O(N) in the size of the value.",
        summary: "Copy a value to another key, in this database or another one.",
        group: "keyspace",
    },
    // `COPY` with the source deleted, and the only command in the group whose
    // second argument is a database rather than a key. The key spec is one key
    // at argument one and the database index is not a key, which is why this
    // does not look like `COPY` above it.
    Spec {
        name: "move",
        arity: 3,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_KEY_WRITE_FAST,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Move a key to another database, if it is not already there.",
        group: "keyspace",
    },
    // The two that block on replication rather than on a key, so they name no
    // key at all and the three zeroes below are not a placeholder.
    Spec {
        name: "wait",
        arity: 3,
        flags: &["blocking"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_WAIT,
        since: "3.0.0",
        complexity: "O(1)",
        summary: "Wait for this connection's writes to reach a number of replicas.",
        group: "keyspace",
    },
    Spec {
        name: "waitaof",
        arity: 4,
        flags: &["blocking"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_WAIT,
        since: "7.2.0",
        complexity: "O(1)",
        summary: "Wait for this connection's writes to reach the append only files.",
        group: "keyspace",
    },
    // The two that speak the file format. A payload is a value standing on its
    // own outside the process, so these are the only two commands in the group
    // that move a value rather than a name.
    Spec {
        name: "dump",
        arity: 2,
        flags: READ_SLOW,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_KEY_READ_SLOW,
        since: "2.6.0",
        complexity: "O(1) to find the key, then O(N) in the size of the value.",
        summary: "Serialize a value into a payload another server can load.",
        group: "keyspace",
    },
    Spec {
        name: "restore",
        arity: -4,
        flags: &["write", "denyoom"],
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_RESTORE,
        since: "2.6.0",
        complexity: "O(1) to find the key, then O(N) in the size of the payload.",
        summary: "Create a key from a payload produced by DUMP.",
        group: "keyspace",
    },
    // And the third one, which is the other two with a socket in between. Its
    // keys are movable for the same reason `SORT`'s are, though for a plainer
    // reason: the `KEYS` option moves them from argument three to everything
    // after the word, so where they are depends on what was written.
    Spec {
        name: "migrate",
        arity: -6,
        flags: MIGRATE_FLAGS,
        first_key: 3,
        last_key: 3,
        step: 1,
        acl: AC_RESTORE,
        since: "2.6.0",
        complexity: "A DUMP and a DEL here, a RESTORE there, and the bytes in between.",
        summary: "Move a key to another server.",
        group: "keyspace",
    },
    // The two whose keys cannot be read off the command. `SORT k BY w_* GET d_*`
    // touches every key those two patterns name and a client cannot know which
    // ones without the data, so both carry `movablekeys` and Redis's own key
    // specs give the same answer: the first key, and the STORE destination if
    // there is one.
    Spec {
        name: "sort",
        arity: -2,
        flags: WRITE_MOVABLE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_SORT_WRITE,
        since: "1.0.0",
        complexity: "O(N+M*log(M)) with N elements and M returned.",
        summary: "Sort a list, set or sorted set, optionally into another key.",
        group: "keyspace",
    },
    Spec {
        name: "sort_ro",
        arity: -2,
        flags: READ_MOVABLE,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_SORT_READ,
        since: "7.0.0",
        complexity: "O(N+M*log(M)) with N elements and M returned.",
        summary: "Sort a list, set or sorted set, without the STORE option.",
        group: "keyspace",
    },
    // The four writers take an optional NX, XX, GT or LT, which is the -3 in
    // the arity, and they take the same one whichever unit they are in.
    Spec {
        name: "expire",
        arity: -3,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_KEY_WRITE_FAST,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Put a deadline on a key, counted in seconds from now.",
        group: "keyspace",
    },
    Spec {
        name: "pexpire",
        arity: -3,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_KEY_WRITE_FAST,
        since: "2.6.0",
        complexity: "O(1)",
        summary: "Put a deadline on a key, counted in milliseconds from now.",
        group: "keyspace",
    },
    Spec {
        name: "expireat",
        arity: -3,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_KEY_WRITE_FAST,
        since: "1.2.0",
        complexity: "O(1)",
        summary: "Put a deadline on a key, as a unix time in seconds.",
        group: "keyspace",
    },
    Spec {
        name: "pexpireat",
        arity: -3,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_KEY_WRITE_FAST,
        since: "2.6.0",
        complexity: "O(1)",
        summary: "Put a deadline on a key, as a unix time in milliseconds.",
        group: "keyspace",
    },
    Spec {
        name: "persist",
        arity: 2,
        flags: WRITE_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_KEY_WRITE_FAST,
        since: "2.2.0",
        complexity: "O(1)",
        summary: "Take a key's deadline off, so it stops being temporary.",
        group: "keyspace",
    },
    Spec {
        name: "ttl",
        arity: 2,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_KEY_READ,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "How many seconds a key has left, -1 with no deadline, -2 if gone.",
        group: "keyspace",
    },
    Spec {
        name: "pttl",
        arity: 2,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_KEY_READ,
        since: "2.6.0",
        complexity: "O(1)",
        summary: "How many milliseconds a key has left, -1 with no deadline, -2 if gone.",
        group: "keyspace",
    },
    Spec {
        name: "expiretime",
        arity: 2,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_KEY_READ,
        since: "7.0.0",
        complexity: "O(1)",
        summary: "When a key falls due, as a unix time in seconds.",
        group: "keyspace",
    },
    Spec {
        name: "pexpiretime",
        arity: 2,
        flags: READ_FAST,
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_KEY_READ,
        since: "7.0.0",
        complexity: "O(1)",
        summary: "When a key falls due, as a unix time in milliseconds.",
        group: "keyspace",
    },
    // A container command, so no keys and no flags of its own: the key is the
    // subcommand's and a real server reports it on `object|encoding` rather
    // than here. `@slow` is the whole ACL, checked against 8.10.1.
    Spec {
        name: "object",
        arity: -2,
        flags: &[],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: &["@slow"],
        since: "2.2.3",
        complexity: "O(1)",
        summary: "Look at the machinery under a key rather than at its value.",
        group: "keyspace",
    },
    // ----------------------------------------------------------- scripting
    // The four spellings of running a script differ in two things and nothing
    // else: whether the client sent the body or its digest, and whether the
    // script may write. So the four rows are the same row four times, and the
    // `_RO` pair says `readonly` first because that is the order a real 8.10.1
    // lists them in and `COMMAND INFO` is compared byte for byte.
    //
    // `movablekeys` is on all four because the keys are not at a fixed offset:
    // the client says how many there are. `no_mandatory_keys` is on all four
    // because it may say none. `script_runner` is what tells a client that the
    // command's real cost is whatever the script does.
    Spec {
        name: "eval",
        arity: -3,
        flags: &[
            "noscript",
            "stale",
            "skip_monitor",
            "no_mandatory_keys",
            "movablekeys",
            "script_runner",
        ],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: &["@slow", "@scripting"],
        since: "2.6.0",
        complexity: "Whatever the script does.",
        summary: "Run a Lua script sent with the command.",
        group: "scripting",
    },
    Spec {
        name: "evalsha",
        arity: -3,
        flags: &[
            "noscript",
            "stale",
            "skip_monitor",
            "no_mandatory_keys",
            "movablekeys",
            "script_runner",
        ],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: &["@slow", "@scripting"],
        since: "2.6.0",
        complexity: "Whatever the script does.",
        summary: "Run a Lua script the cache already holds.",
        group: "scripting",
    },
    Spec {
        name: "eval_ro",
        arity: -3,
        flags: &[
            "readonly",
            "noscript",
            "stale",
            "skip_monitor",
            "no_mandatory_keys",
            "movablekeys",
            "script_runner",
        ],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: &["@slow", "@scripting"],
        since: "7.0.0",
        complexity: "Whatever the script does.",
        summary: "Run a Lua script that is not allowed to write.",
        group: "scripting",
    },
    Spec {
        name: "evalsha_ro",
        arity: -3,
        flags: &[
            "readonly",
            "noscript",
            "stale",
            "skip_monitor",
            "no_mandatory_keys",
            "movablekeys",
            "script_runner",
        ],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: &["@slow", "@scripting"],
        since: "7.0.0",
        complexity: "Whatever the script does.",
        summary: "Run a cached Lua script that is not allowed to write.",
        group: "scripting",
    },
    Spec {
        name: "fcall",
        arity: -3,
        flags: &[
            "noscript",
            "stale",
            "skip_monitor",
            "no_mandatory_keys",
            "movablekeys",
            "script_runner",
        ],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: &["@slow", "@scripting"],
        since: "7.0.0",
        complexity: "Whatever the function does.",
        summary: "Run a function out of a loaded library.",
        group: "scripting",
    },
    Spec {
        name: "fcall_ro",
        arity: -3,
        flags: &[
            "readonly",
            "noscript",
            "stale",
            "skip_monitor",
            "no_mandatory_keys",
            "movablekeys",
            "script_runner",
        ],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: &["@slow", "@scripting"],
        since: "7.0.0",
        complexity: "Whatever the function does.",
        summary: "Run a function that was registered no-writes.",
        group: "scripting",
    },
    // Both containers have no flags and no keys of their own, which is what a
    // real 8.10.1 reports: the flags live on the subcommands.
    Spec {
        name: "script",
        arity: -2,
        flags: &[],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: &["@slow"],
        since: "2.6.0",
        complexity: "O(1) for the subcommands that are here.",
        summary: "The cache EVALSHA runs scripts out of.",
        group: "scripting",
    },
    Spec {
        name: "function",
        arity: -2,
        flags: &[],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: &["@slow"],
        since: "7.0.0",
        complexity: "O(1) for the subcommands that are here.",
        summary: "The libraries FCALL runs functions out of.",
        group: "scripting",
    },
    // ---------------------------------------------------------- connection
    Spec {
        name: "ping",
        arity: -1,
        flags: &["fast"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_CONN,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Ask whether the server is answering.",
        group: "connection",
    },
    Spec {
        name: "echo",
        arity: 2,
        flags: &["loading", "stale", "fast"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_CONN,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Send a string back unchanged.",
        group: "connection",
    },
    Spec {
        name: "hello",
        arity: -1,
        flags: &[
            "noscript",
            "loading",
            "stale",
            "fast",
            "no_auth",
            "allow_busy",
        ],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_CONN,
        since: "6.0.0",
        complexity: "O(1)",
        summary: "Agree on a protocol version and describe the server.",
        group: "connection",
    },
    Spec {
        name: "select",
        arity: 2,
        flags: &["loading", "stale", "fast"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_CONN,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Choose which database this connection works in.",
        group: "connection",
    },
    Spec {
        name: "reset",
        arity: 1,
        flags: &[
            "noscript",
            "loading",
            "stale",
            "fast",
            "no_auth",
            "allow_busy",
        ],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_CONN,
        since: "6.2.0",
        complexity: "O(1)",
        summary: "Put the connection back the way it was opened.",
        group: "connection",
    },
    Spec {
        name: "quit",
        arity: -1,
        flags: &[
            "noscript",
            "loading",
            "stale",
            "fast",
            "no_auth",
            "allow_busy",
        ],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_CONN,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Close the connection after the replies already queued.",
        group: "connection",
    },
    // -------------------------------------------------------- transactions
    // None of the five is a write and none of them names a key the table can
    // describe, `WATCH` included: a watched key is read, and the key spec Redis
    // publishes for it says `RO`. What makes them their own group is that they
    // are the only commands the funnel looks at before it decides whether to run
    // anything at all.
    Spec {
        name: "multi",
        arity: 1,
        flags: &["noscript", "loading", "stale", "fast", "allow_busy"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_TX_FAST,
        since: "2.0.0",
        complexity: "O(1)",
        summary: "Start holding commands instead of running them.",
        group: "transactions",
    },
    Spec {
        name: "exec",
        arity: 1,
        flags: &["noscript", "loading", "stale", "skip_slowlog"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: &["@slow", "@transaction"],
        since: "1.2.0",
        complexity: "Whatever the queued commands cost.",
        summary: "Run everything held since MULTI.",
        group: "transactions",
    },
    Spec {
        name: "discard",
        arity: 1,
        flags: &["noscript", "loading", "stale", "fast", "allow_busy"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_TX_FAST,
        since: "2.0.0",
        complexity: "O(N) in the number of commands held.",
        summary: "Throw away everything held since MULTI.",
        group: "transactions",
    },
    Spec {
        name: "watch",
        arity: -2,
        flags: &["noscript", "loading", "stale", "fast", "allow_busy"],
        first_key: 1,
        last_key: -1,
        step: 1,
        acl: AC_TX_FAST,
        since: "2.2.0",
        complexity: "O(1) a key.",
        summary: "Fail the next EXEC if any of these keys changes.",
        group: "transactions",
    },
    Spec {
        name: "unwatch",
        arity: 1,
        flags: &["noscript", "loading", "stale", "fast", "allow_busy"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_TX_FAST,
        since: "2.2.0",
        complexity: "O(N) in the number of keys watched.",
        summary: "Stop watching everything this connection was watching.",
        group: "transactions",
    },
    // -------------------------------------------------------------- pubsub
    // The three shard commands carry a key at argument one and are not about a
    // key at all. Redis marks that spec `not_key`, which is its way of saying
    // that the argument is there to be hashed to a cluster slot and nothing
    // else, so that a shard channel and the keys it belongs with land on the
    // same node. The triple is what `COMMAND GETKEYS` reads, so it is kept.
    Spec {
        name: "subscribe",
        arity: -2,
        flags: &["denyoom", "pubsub", "noscript", "loading", "stale"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_PUBSUB_SLOW,
        since: "2.0.0",
        complexity: "O(N) in the number of channels named.",
        summary: "Listen on these channels.",
        group: "pubsub",
    },
    Spec {
        name: "unsubscribe",
        arity: -1,
        flags: &["pubsub", "noscript", "loading", "stale"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_PUBSUB_SLOW,
        since: "2.0.0",
        complexity: "O(N) in the number of channels named, or held if none are.",
        summary: "Stop listening on these channels, or on all of them.",
        group: "pubsub",
    },
    Spec {
        name: "psubscribe",
        arity: -2,
        flags: &["denyoom", "pubsub", "noscript", "loading", "stale"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_PUBSUB_SLOW,
        since: "2.0.0",
        complexity: "O(N) in the number of patterns named.",
        summary: "Listen on every channel matching these patterns.",
        group: "pubsub",
    },
    Spec {
        name: "punsubscribe",
        arity: -1,
        flags: &["pubsub", "noscript", "loading", "stale"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_PUBSUB_SLOW,
        since: "2.0.0",
        complexity: "O(N) in the number of patterns named, or held if none are.",
        summary: "Stop listening on these patterns, or on all of them.",
        group: "pubsub",
    },
    Spec {
        name: "ssubscribe",
        arity: -2,
        flags: &["denyoom", "pubsub", "noscript", "loading", "stale"],
        first_key: 1,
        last_key: -1,
        step: 1,
        acl: AC_PUBSUB_SLOW,
        since: "7.0.0",
        complexity: "O(N) in the number of shard channels named.",
        summary: "Listen on these shard channels.",
        group: "pubsub",
    },
    Spec {
        name: "sunsubscribe",
        arity: -1,
        flags: &["pubsub", "noscript", "loading", "stale"],
        first_key: 1,
        last_key: -1,
        step: 1,
        acl: AC_PUBSUB_SLOW,
        since: "7.0.0",
        complexity: "O(N) in the number of shard channels named, or held if none are.",
        summary: "Stop listening on these shard channels, or on all of them.",
        group: "pubsub",
    },
    Spec {
        name: "publish",
        arity: 3,
        flags: &["pubsub", "loading", "stale", "fast"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_PUBSUB_FAST,
        since: "2.0.0",
        complexity: "O(N+M) with N the subscribers and M the patterns.",
        summary: "Send a message to everybody listening on a channel.",
        group: "pubsub",
    },
    Spec {
        name: "spublish",
        arity: 3,
        flags: &["pubsub", "loading", "stale", "fast"],
        first_key: 1,
        last_key: 1,
        step: 1,
        acl: AC_PUBSUB_FAST,
        since: "7.0.0",
        complexity: "O(N) in the shard channel's subscribers.",
        summary: "Send a message to everybody listening on a shard channel.",
        group: "pubsub",
    },
    Spec {
        name: "pubsub",
        arity: -2,
        flags: &[],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: &["@slow"],
        since: "2.8.0",
        complexity: "O(N) in the number of channels or patterns on the server.",
        summary: "What the server's subscriptions look like from outside.",
        group: "pubsub",
    },
    // -------------------------------------------------------------- server
    // COMMAND is in the connection ACL category and in the server group, which
    // is not a contradiction: the category is about what a connection is
    // allowed to do and the group is about what the command is about. The group
    // is the one reported by COMMAND DOCS, so it is the one that has to match.
    Spec {
        name: "command",
        arity: -1,
        flags: &["loading", "stale"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: &["@slow", "@connection"],
        since: "2.8.13",
        complexity: "O(N) with N the number of commands",
        summary: "What this server can do, in the shape client libraries read.",
        group: "server",
    },
    Spec {
        name: "config",
        arity: -2,
        flags: &[],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: &["@slow"],
        since: "2.0.0",
        complexity: "Depends on the subcommand.",
        summary: "Read and change the settings a running server exposes.",
        group: "server",
    },
    // Exactly two, which is what a real 8.10.1 reports for the container even
    // though every one of its subcommands carries its own arity underneath. All
    // seven of them take two words, so nothing legal is refused by it, and the
    // one thing that reads differently is the name inside the arity error for a
    // subcommand with an argument after it. That is D-46.
    Spec {
        name: "backup",
        arity: 2,
        flags: &[],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: &["@slow"],
        since: "8.10.0",
        complexity: "Depends on subcommand.",
        summary: "A container for backup management commands.",
        group: "server",
    },
    Spec {
        name: "info",
        arity: -1,
        flags: &["loading", "stale"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: &["@slow", "@dangerous"],
        since: "1.0.0",
        complexity: "O(1)",
        summary: "The server's own numbers, in sections.",
        group: "server",
    },
    Spec {
        name: "dbsize",
        arity: 1,
        flags: READ_FAST,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_KEY_READ,
        since: "1.0.0",
        complexity: "O(1)",
        summary: "How many keys are in the database this connection is on.",
        group: "server",
    },
    Spec {
        name: "flushall",
        arity: -1,
        flags: &["write"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_KEY_FLUSH,
        since: "1.0.0",
        complexity: "O(N) in the number of keys in every database.",
        summary: "Empty every database.",
        group: "server",
    },
    Spec {
        name: "flushdb",
        arity: -1,
        flags: &["write"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_KEY_FLUSH,
        since: "1.0.0",
        complexity: "O(N) in the number of keys in this database.",
        summary: "Empty the database this connection is on.",
        group: "server",
    },
    // In the server group and not the keyspace one, which is Redis's answer and
    // is the right one: it names no key, it takes two database indexes, and what
    // it changes is what every connected client is looking at.
    Spec {
        name: "swapdb",
        arity: 3,
        flags: WRITE_FAST,
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: AC_SWAPDB,
        since: "4.0.0",
        complexity: "O(N) in the number of clients watching or blocked on either.",
        summary: "Swap two databases, so every client on one sees the other.",
        group: "server",
    },
    // No ACL category but `@fast`, which is Redis's answer and reads like an
    // omission. It is not: the categories are about what a command can reach and
    // this one reaches nothing.
    Spec {
        name: "time",
        arity: 1,
        flags: &["loading", "stale", "fast"],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: &["@fast"],
        since: "2.6.0",
        complexity: "O(1)",
        summary: "The server's clock, as seconds and microseconds.",
        group: "server",
    },
    Spec {
        name: "shutdown",
        arity: -1,
        flags: &[
            "admin",
            "noscript",
            "loading",
            "stale",
            "no_multi",
            "allow_busy",
        ],
        first_key: 0,
        last_key: 0,
        step: 0,
        acl: &["@admin", "@slow", "@dangerous"],
        since: "1.0.0",
        complexity: "O(1)",
        summary: "Stop the server, without answering.",
        group: "server",
    },
];

/// The shortest and the longest command name.
///
/// Both are facts about [`COMMANDS`], pinned by a test, and both are checked
/// before anything is read, so a name that could not be a command is rejected on
/// its length alone.
const MIN_LEN: usize = 3;
const MAX_LEN: usize = 20;

/// How many slots the index has, which is a power of two and a bit over three
/// times the number of commands.
///
/// Four kibibytes of `u16`, sixty four cache lines, and loose enough that a probe
/// for a name that is not a command stops at an empty slot almost immediately.
/// Tight enough that the whole thing stays resident next to the table it
/// indexes.
///
/// This was 512 for a long time, which was a bit over twice the number of
/// commands, and it stopped being enough at 282 of them. Then it was 1024, and
/// that stopped being enough at 337. The note on [`MIX`] has the whole story
/// both times, and the short version is the same one twice: at about half full
/// there is no multiplier left that keeps every command within two slots of
/// home, and at about a sixth full the multiplier that is already there keeps
/// every one of them within a single slot without being touched. Two kibibytes
/// is what it cost this time.
const SLOTS: usize = 2048;

/// A slot nothing was put in.
///
/// `u16::MAX` and not zero, because zero is `set` and `set` is the command this
/// most wants to be able to find.
const FREE: u16 = u16::MAX;

/// The multiplier, found by searching for one that spreads these 358 names well.
///
/// Not a magic constant in the bad sense: it is checked. Every command is looked
/// up by its own name in a test, and another test holds the worst probe length
/// at what it is now, so a command added later that made this multiplier bad
/// would fail rather than quietly cost every lookup an extra slot.
///
/// It has been searched for fifteen times, and each time because the test went red
/// rather than because somebody went looking. The first was against the 191 names
/// in the table then, the ten graph commands pushed its worst probe to three
/// slots, and the second search was run over all 201. The fifteen stream commands
/// pushed that one to four slots and fifty one extra probes, so the third was run
/// over all 216, and the three 8.x pending list commands cost that one two more
/// probes than the test allows. The fourth was over 219 and the seven bitmap
/// commands took it to three slots, and the fifth was over all 226. The five
/// HyperLogLog commands kept its worst probe at two and took it from forty nine
/// extra slots to fifty five, and the search over the 231 names found nothing
/// better, so that one stood. The ten geo commands took it to sixty, and the
/// sixth search, over eight million multipliers and all 241 names, found one at
/// fifty six. The twelve vector set commands took that one to four slots and
/// seventy extra probes, so the seventh search was run over all 254 names and
/// found one at two slots and seventy seven.
///
/// The eight JSON commands took that one to five slots, which is the worst any
/// of them has been, and the eighth search was run over four hundred million
/// multipliers and all 262 names. It found this one at two slots and fifty four,
/// which is the best the table has ever been and a third fewer extra probes than
/// the multiplier it replaced managed with eight fewer commands. Thirty one of
/// the names collide on the key itself and no multiplier can separate them, so
/// seventeen extra probes is the floor everything here is measured against.
/// `json.set` and `json.get` are one of those pairs, since every name in the
/// group starts `js` and the only thing left to tell them apart is the length
/// and the last byte.
///
/// The nine JSON array commands took that one to four slots, and this time the
/// search over the 271 names found nothing at two whatever it was given. That
/// was not the multiplier's fault. `json.arrlen`, `json.objlen` and
/// `json.strlen` all key to the same four bytes, and three names in one slot run
/// costs the third of them two probes before any other name has moved, so two
/// slots was the whole budget spent in one place. The fix was the key rather
/// than the multiplier, which is what [`key_of`] now folds the middle byte in
/// for, and the ninth search was run over the 271 names with the new key across
/// six shards. It found one at two slots and fifty seven, which is a shade over
/// a fifth of a probe a command, the same as the multiplier it replaced managed
/// over nine fewer names.
///
/// The number family and `json.strappend` took that one to three slots, and the
/// tenth search over the 275 names found one at two slots and sixty seven.
/// Three of the six shards converged on sixty seven from different seeds without
/// any of them bettering it, which is the sign that the key rather than the
/// multiplier is what is left: fourteen of the names collide on the key itself
/// and no multiplier can separate them, so fourteen extra probes is the floor
/// and that was within a quarter of it per name. The two new pairs were
/// `json.arrappend` with `json.strappend` and `json.numincrby` with
/// `json.nummultby`, and both are the same shape as the pairs already there,
/// which is a group whose names agree everywhere the key looks.
///
/// The last four JSON commands took it to three slots again, and the eleventh
/// search over the 279 names found this one at two slots and sixty two, which is
/// better than the table has ever been while carrying four more names. Only one
/// of the four collides on the key, `json.mset` with `json.mget`, so the floor
/// moved by one and the multiplier found five more probes than the floor moved.
/// Nine shards were run from different seeds and the spread was sixty two to a
/// hundred and three, which is worth knowing: one shard is not a search.
///
/// `SUNIONCARD` and `SDIFFCARD` took it to 281 names and sixty three probes, one
/// more than before, and the twelfth search is the first one that did not
/// replace it. Eight shards over 960 million multipliers did not find a single
/// one that kept the worst probe at two slots at all, let alone at two slots and
/// sixty two, and the best of them was three slots and eighty one. So that one
/// stayed and the bound went up by one, which is the opposite of what the first
/// eleven searches concluded and was the honest reading of the same procedure.
///
/// `LMOVEM` took it to 282 names and three slots, and that is where the search
/// stopped being the answer. Twelve searches had found a better multiplier
/// eleven times and the twelfth had found that there was none, which is not a
/// result about `LMOVEM`, it is a result about a 512 slot table holding 282
/// names. Fifty five percent full is where linear probing starts to cost real
/// runs, and no multiplier gets around that because the runs are the load
/// factor and not the hash.
///
/// So the other half of the remedy this note has always named was taken and the
/// table doubled. At 1024 slots the multiplier that was already here goes to two
/// slots and forty two extra probes without being touched, which on its own
/// would have been enough. A search over the doubled table across four shards
/// and eighty million multipliers then found this one at **one** slot and twenty
/// eight, so no command is more than a single slot from where it wants to be,
/// which the table has never managed at any size. Fourteen names collide on the
/// key itself and no multiplier can separate them, so fourteen is the floor and
/// this is twice it, against a floor the 512 slot table never came within four
/// times of.
///
/// The cost is a kibibyte, and the thing it buys beyond today is room. The
/// `FT.*` and `TS.*` families are still to be written and both are large, and at
/// 27 percent full there is somewhere for them to go.
///
/// The `BF.*` family is the first of those to arrive and it took the table to
/// 296 names, where the doubled table's multiplier went to two slots and thirty
/// six extra probes. That is well inside what a lookup is allowed to cost, so
/// the search was run to see whether the single slot result had been luck at 285
/// names or was a property of the table at this load, and eight shards over a
/// hundred and sixty million multipliers found this one at one slot and thirty
/// three. Eleven more names, five more probes, and the worst is still a single
/// slot. None of the eleven collides on the key, so the floor moved by one for
/// an unrelated reason and stands at fifteen, which this is a shade over twice.
///
/// The `CF.*` family took the table to 310 names and thirty five extra probes,
/// two more than the bound allowed, with the worst still a single slot. The
/// thirteenth search was run over that and it is the second one that did not
/// replace the multiplier. Ten shards over one and a half billion multipliers
/// found nothing better than thirty six at one slot, which is worse than the one
/// already here, and another two billion with the single slot rule relaxed found
/// one at two slots and thirty one. Four fewer probes spread over three hundred
/// and ten lookups is not worth giving up the property that no command is ever
/// more than one slot from home, so this one stayed and the bound went up by two.
/// None of the fourteen new names collides on the key, so the floor is still
/// fifteen and the table is at a shade over twice it while carrying fourteen more
/// commands than when that was first true.
///
/// The `CMS.*` family took it to 316 names and thirty seven extra probes, with
/// the worst still one slot. No search was run this time. The one before it
/// covered three and a half billion multipliers against a table only six names
/// smaller and found nothing better that keeps every command within a slot, and
/// six names is not enough of a change to expect a different answer, so the
/// bound went up by two again. Only one of the six new names collides on the
/// key, which is `CMS.QUERY` against `CMS.MERGE`, so the floor is sixteen and
/// the table is still a shade over twice it.
///
/// The `TOPK.*` family took it to 323 names and forty two extra probes, with the
/// worst still one slot. A short search of four hundred thousand multipliers ran
/// against the new table and the best it turned up was two slots and forty eight,
/// worse on both counts, which is what the two big searches before it already
/// said, so this multiplier stayed and the bound went up by five. None of the
/// seven new names collides on the key, so the floor is still sixteen.
///
/// The `TDIGEST.*` family took it to 337 names and broke the bound properly: the
/// worst probe went to three slots, which is the first time since the table was
/// doubled that a command was further from home than a lookup is allowed to be.
/// Fourteen names is a lot to add to a family of sketch commands that all start
/// with the same two bytes, and the key is built out of the first two bytes, so
/// the whole family lands in a handful of key values before the multiply ever
/// sees them.
///
/// So the fifteenth search ran, and it said the same thing the tenth one did at
/// 282 names. Three and a half million multipliers against the 1024 slot table
/// found nothing better than two slots and fifty two extra probes, against the
/// fifty two this one already spends at three slots. That is the shape of a
/// table that is too full rather than a multiplier that is bad, and at 337
/// names in 1024 slots it is a third full, which is where the 512 slot table
/// was when it ran out as well. Doubling the table to 2048 and touching nothing
/// else takes this same multiplier to **one** slot and thirty four, so the
/// answer was a bigger table again and not a new constant.
///
/// The search then ran over the doubled table anyway, because that is what
/// happened last time and it found something worth having. Four and a half
/// million multipliers turned up this one at one slot and twenty two, twelve
/// fewer probes than the old multiplier spends in the same table, against a
/// floor of sixteen from the names that collide on the key itself. Twelve
/// probes over three hundred and thirty seven lookups is not much, but it is
/// free, it moves both numbers the right way, and it is exactly the trade the
/// doubling from 512 made, so it was taken. The old multiplier was
/// `0x3e8668c9760e09c9` and it served for thirteen searches.
///
/// The room this buys is the same room as last time and it is worth writing down
/// again: `FT.*` and `TS.*` are still to come and both are large, and at a sixth
/// full there is somewhere for them to go.
///
/// `TS.*` then arrived and the last three of it, the two joined reads and
/// `TS.READ`, broke the bound in a way no multiplier could fix. `TS.NRANGE` made
/// `ts.create`, `ts.incrby`, `ts.mrange` and `ts.nrange` four names sharing one
/// key: all nine bytes long, all starting `ts`, and all with the same fold of
/// the last byte against the middle one. Four names in a slot run costs the
/// fourth of them three probes wherever the run starts, so the worst probe went
/// to three and doubling the table again would not have moved it, because the
/// cost is in the key and not in how much room the key has to land in.
///
/// So the sixteenth search was a search for a key rather than for a multiplier.
/// Folding the second to last byte in as well separates all four of them, and it
/// separates enough else besides to take the floor from twenty colliding names
/// down to twelve, which is the fewest of the handful of folds tried. It is the
/// cheapest byte to add, too, because it sits next to the last byte that is
/// already being read. Then the multiplier search ran over the new key, three
/// hundred and twenty million of them across eight shards, and the best keeps
/// every command within one slot at eighteen extra probes over the whole table,
/// against a floor of twelve. That is the best either number has ever been here
/// while carrying the most names it has ever carried. The old multiplier was
/// `0x2f0cc21a638ae49d` and it served for one search.
///
/// `FT.CONFIG` then took the table to 392 names and put the worst probe back to
/// three slots on its own. It does not collide on the key with anything, so the
/// floor is still twelve and this was a slot run and not a key problem, which
/// meant a seventeenth multiplier search rather than another key. Eight hundred
/// million multipliers over two independent seeds both bottomed out at one slot
/// and twenty one extra probes and neither ever went below it, so twenty one
/// looks like where this key and this table actually sit with 392 names in
/// them. Three more probes than the last search spent over one more name is the
/// ordinary cost of a name, and every command is still within one slot, which
/// is the number a lookup feels. The old multiplier was `0x55251c10f29d4c29`
/// and it served for one search as well.
///
/// The five deprecated document commands took the table to 399 names and the
/// worst probe to two slots, which is inside the bound and outside what this
/// table has held itself to since it was doubled, so an eighteenth search ran.
/// One of the five raises the floor as well: `FT.SAFEADD` agrees with
/// `FT.PROFILE` on all four key bytes, which makes thirteen colliding pairs
/// instead of twelve and thirteen the fewest extra probes any multiplier can
/// spend. Four billion multipliers over two independent seeds both reached one
/// slot, one of them at twenty two extra probes and the other at twenty one,
/// which is the same twenty one the last search settled on while carrying one
/// more collision than it did. The old multiplier was `0xda8bd262ac598c57` and
/// it served for one search as well.
///
/// The five transaction commands took the table to 411 names and the total to
/// twenty five, which is over what this table had been holding and is the first
/// time the number moved without the worst probe moving with it. A nineteenth
/// search ran anyway, four billion multipliers, and the best of them spends
/// twenty four. One probe over four hundred and eleven commands is not worth
/// changing a constant that is already at one slot for every name, so this is
/// the first search that ended by keeping the multiplier it started with. The
/// floor is still thirteen and the number a lookup feels is still one.
///
/// The nine pub/sub commands took the table to 420 names and the worst probe to
/// two slots, so the multiplier the last search declined to replace had to be
/// replaced after all. A twentieth search ran, four billion multipliers over ten
/// threads, and the best of them is back to one slot for every name at twenty
/// four extra probes, which is the same twenty four the nineteenth search found
/// and did not take. The floor is still thirteen, because none of the nine
/// agrees with anything already in the table on all four key bytes. The old
/// multiplier was `0x91de5d5e21661fbd` and it served for two searches.
const MIX: u64 = 0x71ee_9b00_ab8a_5fd7;

/// The four bytes the index is computed from: the length, the first two bytes,
/// and the last byte with the second to last and the middle folded into it, all
/// lower cased.
///
/// `None` for a name no command could be spelled as, which is decided on the
/// length before a byte is read.
///
/// Four bytes and not the whole name because the whole name has to be compared
/// at the end anyway, so the hash only has to be good enough to get to the right
/// slot, and reading less of the name is a shorter dependency chain in front of
/// the multiply. Names that agree on all four collide whatever the multiplier is
/// and probe once more, and the probe is the same compare the lookup was always
/// going to do. Over the 420 commands there are thirteen such pairs and no group
/// larger than a pair, so thirteen extra probes is the floor.
///
/// The middle byte is the part that was added last and it is worth saying why,
/// because for a long time the key was the length and the first two bytes and
/// the last and nothing else. That was fine while the groups that agreed on a
/// prefix were small: `setnx` with `setex`, `g.nadd` with `g.eadd`, `getset`
/// with `getbit`, `setbit` with `select`. The JSON group broke it, because every
/// name in it starts `js` and so every name in it was keyed on nothing but its
/// length and its last byte, and `json.arrlen`, `json.objlen` and `json.strlen`
/// agree on both. Three names in one slot run costs the third of them two probes
/// on its own, which leaves a multiplier no room anywhere else, and the number
/// families still to come are the same shape again. Folding in the middle byte
/// separates all three, and it separates `json.set` from `json.get` as well.
/// It costs one more load off a cache line the first two bytes already pulled
/// in, and the xor is on the same dependency chain as the shifts rather than in
/// front of them.
///
/// The second to last byte went in for the same reason a family later. `TS.*`
/// is the JSON shape again and worse: every name starts `ts`, so a nine byte
/// name is keyed on nothing but its length and the fold of its last byte against
/// its middle one, and `ts.create`, `ts.incrby`, `ts.mrange` and `ts.nrange` all
/// land on the same fold. Four in a run is three probes for the last of them
/// whatever the multiplier does, so the key had to carry more. The byte before
/// the last one is the cheapest one left, being on the cache line the last byte
/// already pulled in, and it separates all four of those and takes the floor
/// from twenty down to twelve besides.
///
/// `| 0x20` lower cases a letter and does not have to be told which bytes are
/// letters. It maps the two cases of a name to the same number, which is all
/// this needs, and every command name is letters. It has to be applied to each
/// of the three folded bytes separately, before the xor rather than after,
/// because `.` and `n` differ in the bit `| 0x20` sets and an xor of the raw
/// bytes would keep that difference alive.
///
/// On a three or four byte name the middle byte and the second to last byte are
/// the same byte and cancel each other out, which leaves the fold as the last
/// byte alone. That is not a loss, because on a name that short every byte the
/// fold could carry is already in the key somewhere else.
const fn key_of(name: &[u8]) -> Option<u32> {
    if name.len() < MIN_LEN || name.len() > MAX_LEN {
        return None;
    }
    let last = name.len() - 1;
    let mid = name.len() / 2;
    Some(
        name.len() as u32
            | ((name[0] | 0x20) as u32) << 8
            | ((name[1] | 0x20) as u32) << 16
            | (((name[last] | 0x20) ^ (name[last - 1] | 0x20) ^ (name[mid] | 0x20)) as u32) << 24,
    )
}

/// Where a key wants to sit.
///
/// The shift leaves the top eleven bits of the product, which are the ones the
/// multiply mixed the most, and the mask is what makes that a slot number. Eleven
/// because the table has 2048 slots, so both numbers have to move together if
/// [`SLOTS`] ever does. It was ten while the table was half this size.
const fn slot_of(key: u32) -> usize {
    ((key as u64).wrapping_mul(MIX) >> 53) as usize & (SLOTS - 1)
}

/// The index, built at compile time by inserting every command in table order.
///
/// Table order is rough order of how often a command is sent, and inserting in
/// that order means the hotter of two commands that want the same slot gets it
/// and the colder one probes, which is the right way round.
const INDEX: [u16; SLOTS] = index();

const fn index() -> [u16; SLOTS] {
    let mut out = [FREE; SLOTS];
    let mut i = 0;
    while i < COMMANDS.len() {
        let key = match key_of(COMMANDS[i].name.as_bytes()) {
            Some(key) => key,
            None => panic!("a command name is outside MIN_LEN..=MAX_LEN"),
        };
        let mut at = slot_of(key);
        while out[at] != FREE {
            at = (at + 1) & (SLOTS - 1);
        }
        out[at] = i as u16;
        i += 1;
    }
    out
}

/// The command called `name`, whatever case the client spelled it in.
///
/// This used to walk the whole table comparing lengths, and the cost of that was
/// not what it looked like. The table is written in rough order of how often a
/// command is sent, so `set` and `get` were the first two entries and cost one
/// compare, but `exists` is the hundred and forty ninth and `del` the hundred and
/// forty seventh, and every one of those compares was paid twice per command,
/// once to work out the key hash and once to dispatch.
///
/// Measured, that walk was 104 nanoseconds a command, which is more than a whole
/// `GET` costs end to end. `EXISTS` on a missing key ran at three and a half
/// times `GET` and almost none of the difference was the command: short
/// circuiting the lookup alone took it from 8.7 microseconds a batch of sixty
/// four to 2.0, and left it faster than `GET`, which it should be, because it
/// does less.
///
/// So this is one multiply and one load into two kibibytes, and then the same name
/// compare it always ended with. What it costs the hot commands is a multiply
/// they did not use to pay and a load that hits, and what it saves the rest is
/// the whole walk.
#[must_use]
pub fn lookup(name: &[u8]) -> Option<&'static Spec> {
    at(lookup_index(name))
}

/// The same, answering with a position in the table rather than a reference.
///
/// This is where the lookup actually ends, because the index is what the slots
/// hold. It is here as its own function because a position fits in a `u16` and a
/// reference does not fit anywhere a framed command can carry it cheaply, so the
/// engine resolves a command's name once when it frames it and hands the number
/// on to both the key hash and the dispatcher.
///
/// `u16::MAX` is the answer for a name that is not a command, which is not a
/// special case anybody has to write down: the table is 254 entries, so [`at`]
/// hands back `None` for it the same way it would for any other number past the
/// end.
#[must_use]
pub fn lookup_index(name: &[u8]) -> u16 {
    let Some(key) = key_of(name) else {
        return FREE;
    };
    let mut at = slot_of(key);
    loop {
        let i = INDEX[at];
        if i == FREE {
            return FREE;
        }
        if COMMANDS[i as usize]
            .name
            .as_bytes()
            .eq_ignore_ascii_case(name)
        {
            return i;
        }
        at = (at + 1) & (SLOTS - 1);
    }
}

/// The command at `i`, or `None` if there is none there.
///
/// The other half of [`lookup_index`], and the only thing that should ever be
/// handed one of its answers.
#[must_use]
pub fn at(i: u16) -> Option<&'static Spec> {
    COMMANDS.get(i as usize)
}

/// How many commands there are.
///
/// The length of a counter array that has a row per command, which is the only
/// thing that wants this number.
#[must_use]
pub const fn count() -> usize {
    COMMANDS.len()
}

/// Where in [`COMMANDS`] this spec is.
///
/// Every `&'static Spec` a caller can hold came out of [`lookup`] and therefore
/// points into that array, so its position is the distance from the front
/// measured in whole `Spec`s. That is arithmetic on two addresses and not a
/// search, which is the point: a per command counter has to be reachable from
/// the spec the dispatcher is already holding without walking the table a second
/// time.
///
/// A spec from somewhere else would answer nonsense, which is why this takes a
/// `&'static Spec` rather than a `&Spec`: the only `'static` ones are in the
/// table.
#[must_use]
pub fn index_of(spec: &'static Spec) -> usize {
    let front = COMMANDS.as_ptr().addr();
    let here = std::ptr::from_ref(spec).addr();
    (here - front) / size_of::<Spec>()
}

/// The name of the command at `at`, which is [`index_of`] the other way round.
///
/// # Panics
///
/// If `at` is past the end of the table, which only a caller that made the index
/// up rather than getting it from [`index_of`] can manage.
#[must_use]
pub fn name_at(at: usize) -> &'static str {
    COMMANDS[at].name
}

/// Whether `n` arguments, counting the name, satisfy this command's arity.
#[must_use]
pub fn arity_ok(spec: &Spec, n: usize) -> bool {
    let n = n as i32;
    if spec.arity >= 0 {
        n == spec.arity
    } else {
        n >= -spec.arity
    }
}

/// Where a command's key arguments are: the first one, how many there are, and
/// how far apart they sit.
///
/// Three numbers is enough for every command in this table, the ones Redis marks
/// `movablekeys` included, because those keep their keys behind a count and a
/// count still gives a first, a many and a step. What three numbers cannot
/// describe is a command whose keys are found by scanning for a keyword, and
/// there are none of those here.
#[derive(Debug, Clone, Copy)]
pub(crate) struct KeySpan {
    /// The argument index of the first key.
    pub first: usize,
    /// How many keys there are.
    pub count: usize,
    /// How many arguments apart consecutive keys are.
    pub step: usize,
}

/// Why a command has no key span.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub(crate) enum NoKeys {
    /// It names no keys at all, whatever it is sent.
    Never,
    /// It keeps its keys behind a count, and the count is not a usable number.
    BadCount,
}

/// Work out where `spec`'s keys are in `args`.
///
/// `base` is how many arguments sit in front of the command itself, which is two
/// for `COMMAND GETKEYS <command> ...` and zero for a command that is running.
/// The positions in the answer are absolute, so they go straight to
/// [`Args::get`].
///
/// A few commands keep their keys somewhere the first, last and step triple
/// cannot describe, behind a count of how many there are. That is why a real
/// server marks them `movablekeys` and why a cluster aware client has to ask
/// `COMMAND GETKEYS` about them at all. `MSETEX` counts pairs and the rest count
/// single keys, so what differs between them is the step and where the count
/// sits: the script family has the body in front of it and the others have
/// nothing.
///
/// The script family is also the only one where none is a real answer. A script
/// with no keys is an ordinary thing to write and `EVAL body 0` answers an empty
/// list rather than complaining, where `MSETEX 0` is a command that would do
/// nothing and is refused. So a count that makes no sense at all is an empty
/// span for the script family and a [`NoKeys::BadCount`] for the others, which
/// is a real server reading the script family through a key spec that finds no
/// keys and refusing the rest.
pub(crate) fn key_span(spec: &Spec, args: Args<'_>, base: usize) -> Result<KeySpan, NoKeys> {
    if let Some((rel, step, least, lenient)) = match spec.name {
        "msetex" => Some((1, 2, 1, false)),
        "ts.nrange" | "ts.nrevrange" => Some((1, 1, 1, false)),
        "eval" | "eval_ro" | "evalsha" | "evalsha_ro" | "fcall" | "fcall_ro" => {
            Some((2, 1, 0, true))
        }
        _ => None,
    } {
        let at = base + rel;
        let found = parse_i64(args.get(at))
            .filter(|&n| n >= least)
            .and_then(|n| usize::try_from(n).ok())
            .filter(|&n| at + 1 + step * n <= args.len());
        let count = match found {
            Some(n) => n,
            None if lenient => 0,
            None => return Err(NoKeys::BadCount),
        };
        return Ok(KeySpan {
            first: at + 1,
            count,
            step,
        });
    }
    if spec.first_key == 0 {
        return Err(NoKeys::Never);
    }
    let argc = args.len() - base;
    let last = if spec.last_key < 0 {
        (argc as i64) + i64::from(spec.last_key)
    } else {
        i64::from(spec.last_key)
    };
    let step = i64::from(spec.step).max(1);
    let first = i64::from(spec.first_key);
    let count = if last < first {
        0
    } else {
        ((last - first) / step + 1) as usize
    };
    Ok(KeySpan {
        first: base + first as usize,
        count,
        step: step as usize,
    })
}

#[cfg(test)]
mod tests {
    use super::*;

    /// The name here is the name a client reads back, so it is spelled the way
    /// the server that registered it spelled it.
    ///
    /// That is lower case for everything the server itself registers and upper
    /// case for the two groups that come out of a module, so `COMMAND INFO vadd`
    /// answers `VADD` and `COMMAND INFO ft.create` answers `FT.CREATE`, and the
    /// arity errors quote them the same way. Nothing else in the table cares,
    /// because a lookup compares without regard to case and the index key folds
    /// the case out before it hashes.
    #[test]
    fn every_name_is_spelled_the_way_it_was_registered_and_appears_once() {
        let mut seen = std::collections::BTreeSet::new();
        for c in COMMANDS {
            let want = if c.group == "vector" || c.group == "search" {
                c.name.to_uppercase()
            } else {
                c.name.to_lowercase()
            };
            assert_eq!(c.name, want, "{} is spelled wrong for its group", c.name);
            assert!(seen.insert(c.name), "{} is in the table twice", c.name);
        }
    }

    /// Every command's index is where the table actually holds it.
    ///
    /// Checked against the position a search finds, over the whole table rather
    /// than a sample, because the arithmetic is the thing being tested and an
    /// off by one in it would put every counter on the wrong command.
    #[test]
    fn a_spec_knows_where_it_is_in_the_table() {
        assert_eq!(count(), COMMANDS.len());
        for (want, spec) in COMMANDS.iter().enumerate() {
            assert_eq!(index_of(spec), want, "{} is at the wrong index", spec.name);
        }
        assert_eq!(
            index_of(lookup(b"get").unwrap()),
            index_of(lookup(b"GET").unwrap())
        );
    }

    #[test]
    fn lookup_ignores_case_and_does_not_match_a_prefix() {
        assert_eq!(lookup(b"GET").unwrap().name, "get");
        assert_eq!(lookup(b"gEt").unwrap().name, "get");
        assert!(lookup(b"ge").is_none());
        assert!(lookup(b"gets").is_none());
    }

    /// Every command is findable under its own name, in either case.
    ///
    /// The index is built at compile time from the table it sits beside, so what
    /// a test can still catch is a command that the build put somewhere the
    /// lookup does not walk past, which is what a probe that stopped early would
    /// look like.
    #[test]
    fn every_command_is_findable_by_its_own_name() {
        for spec in COMMANDS {
            let found = lookup(spec.name.as_bytes()).expect(spec.name);
            assert_eq!(
                index_of(found),
                index_of(spec),
                "{} found the wrong spec",
                spec.name
            );
            assert_eq!(
                lookup(spec.name.to_ascii_uppercase().as_bytes()).map(index_of),
                Some(index_of(spec)),
                "{} is not found in upper case",
                spec.name,
            );
        }
    }

    /// A name that cannot be a command is answered before anything is compared.
    #[test]
    fn a_name_that_cannot_be_a_command_is_rejected_on_its_shape() {
        assert!(lookup(b"").is_none());
        assert!(key_of(b"").is_none());
        assert!(key_of(&[b'g'; 256]).is_none());
        assert!(lookup(&[b'g'; 256]).is_none());
        assert!(lookup(b"9et").is_none());
    }

    /// The two cases of a name give the same key and different names do not.
    #[test]
    fn a_key_folds_the_case_and_nothing_else() {
        assert_eq!(key_of(b"get"), key_of(b"GET"));
        assert_eq!(key_of(b"get"), key_of(b"gEt"));
        assert_ne!(key_of(b"get"), key_of(b"set"), "other first byte");
        assert_ne!(key_of(b"get"), key_of(b"gxt"), "other second byte");
        assert_ne!(key_of(b"get"), key_of(b"gex"), "other last byte");
        assert_ne!(key_of(b"get"), key_of(b"gett"), "other length");
        assert_ne!(key_of(b"abcde"), key_of(b"abxde"), "other middle byte");
        assert_eq!(key_of(b"abcde"), key_of(b"ABCDE"), "middle byte folds too");
    }

    /// The index is still worth having, which is a thing that can rot.
    ///
    /// The multiplier was searched for against the 191 commands that were in the
    /// table when it was written, and nineteen times since. Adding commands cannot
    /// make a lookup wrong, because a probe walks to an empty slot and every
    /// candidate has its name compared, but it can make one slow, and a slow
    /// lookup is exactly the thing this replaced. So the worst probe is written
    /// down here: if a command added later pushes it up, somebody searches for a
    /// new multiplier or a bigger table rather than finding out from a benchmark
    /// six months later. Both of those have now happened, and the note on
    /// [`MIX`] says which one worked when.
    ///
    /// The bound is two slots because that is what a lookup is allowed to cost,
    /// and the table is better than its bound: the multiplier in it keeps every
    /// command within one slot. The total is held at exactly what it measures so
    /// that a command which quietly spends the headroom shows up here.
    #[test]
    fn no_command_is_more_than_two_slots_from_where_it_wants_to_be() {
        let mut worst = 0;
        let mut total = 0;
        for spec in COMMANDS {
            let key = key_of(spec.name.as_bytes()).expect(spec.name);
            let home = slot_of(key);
            let mut at = home;
            let mut steps = 0;
            while INDEX[at] as usize != index_of(spec) {
                at = (at + 1) & (SLOTS - 1);
                steps += 1;
                assert!(steps < SLOTS, "{} is not in the index at all", spec.name);
            }
            worst = worst.max(steps);
            total += steps;
        }
        assert!(worst <= 2, "worst probe is {worst} slots");
        assert_eq!(
            worst, 1,
            "the multiplier stopped keeping every command close"
        );
        assert!(
            total <= 24,
            "{total} extra slots walked over the whole table"
        );
    }

    /// The table has room to probe in, which is what stops the loop.
    #[test]
    fn the_index_is_not_full() {
        assert!(
            COMMANDS.len() < SLOTS,
            "the probe would never find an empty"
        );
        assert!(
            COMMANDS.len() < FREE as usize,
            "an index would collide with FREE"
        );
        let free = INDEX.iter().filter(|&&i| i == FREE).count();
        assert_eq!(free, SLOTS - COMMANDS.len());
    }

    #[test]
    fn arity_counts_the_command_name() {
        let get = lookup(b"get").unwrap();
        assert!(!arity_ok(get, 1));
        assert!(arity_ok(get, 2));
        assert!(!arity_ok(get, 3));

        // A negative arity is a minimum, which is how SET takes its options.
        let set = lookup(b"set").unwrap();
        assert!(!arity_ok(set, 2));
        assert!(arity_ok(set, 3));
        assert!(arity_ok(set, 9));
    }

    /// A key spec that is wrong sends a cluster client to the wrong node, so
    /// the pair commands are worth stating twice.
    #[test]
    fn the_pair_commands_step_two_keys_at_a_time() {
        for name in [b"mset".as_slice(), b"msetnx"] {
            let c = lookup(name).unwrap();
            assert_eq!((c.first_key, c.last_key, c.step), (1, -1, 2));
        }
        let mget = lookup(b"mget").unwrap();
        assert_eq!((mget.first_key, mget.last_key, mget.step), (1, -1, 1));
        // MSETEX counts its keys in an argument, so there is no static spec
        // for them and a client has to ask with COMMAND GETKEYS.
        let msetex = lookup(b"msetex").unwrap();
        assert_eq!((msetex.first_key, msetex.last_key, msetex.step), (0, 0, 0));
        assert!(msetex.flags.contains(&"movablekeys"));
    }
}