You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: commands.json
+40-30Lines changed: 40 additions & 30 deletions
Original file line number
Diff line number
Diff line change
@@ -3107,7 +3107,7 @@
3107
3107
]
3108
3108
},
3109
3109
"COMMAND DOCS": {
3110
-
"summary": "Returns documentary information about a command.",
3110
+
"summary": "Returns documentary information about one, multiple or all commands.",
3111
3111
"since": "7.0.0",
3112
3112
"group": "server",
3113
3113
"complexity": "O(N) where N is the number of commands to look up",
@@ -5378,20 +5378,25 @@
5378
5378
]
5379
5379
},
5380
5380
{
5381
-
"name": "storekey",
5382
-
"type": "key",
5383
-
"display_text": "key",
5384
-
"key_spec_index": 1,
5385
-
"token": "STORE",
5386
-
"optional": true
5387
-
},
5388
-
{
5389
-
"name": "storedistkey",
5390
-
"type": "key",
5391
-
"display_text": "key",
5392
-
"key_spec_index": 2,
5393
-
"token": "STOREDIST",
5394
-
"optional": true
5381
+
"name": "store",
5382
+
"type": "oneof",
5383
+
"optional": true,
5384
+
"arguments": [
5385
+
{
5386
+
"name": "storekey",
5387
+
"type": "key",
5388
+
"display_text": "key",
5389
+
"key_spec_index": 1,
5390
+
"token": "STORE"
5391
+
},
5392
+
{
5393
+
"name": "storedistkey",
5394
+
"type": "key",
5395
+
"display_text": "key",
5396
+
"key_spec_index": 2,
5397
+
"token": "STOREDIST"
5398
+
}
5399
+
]
5395
5400
}
5396
5401
],
5397
5402
"command_flags": [
@@ -5588,20 +5593,25 @@
5588
5593
]
5589
5594
},
5590
5595
{
5591
-
"name": "storekey",
5592
-
"type": "key",
5593
-
"display_text": "key",
5594
-
"key_spec_index": 1,
5595
-
"token": "STORE",
5596
-
"optional": true
5597
-
},
5598
-
{
5599
-
"name": "storedistkey",
5600
-
"type": "key",
5601
-
"display_text": "key",
5602
-
"key_spec_index": 2,
5603
-
"token": "STOREDIST",
5604
-
"optional": true
5596
+
"name": "store",
5597
+
"type": "oneof",
5598
+
"optional": true,
5599
+
"arguments": [
5600
+
{
5601
+
"name": "storekey",
5602
+
"type": "key",
5603
+
"display_text": "key",
5604
+
"key_spec_index": 1,
5605
+
"token": "STORE"
5606
+
},
5607
+
{
5608
+
"name": "storedistkey",
5609
+
"type": "key",
5610
+
"display_text": "key",
5611
+
"key_spec_index": 2,
5612
+
"token": "STOREDIST"
5613
+
}
5614
+
]
5605
5615
}
5606
5616
],
5607
5617
"command_flags": [
@@ -15582,7 +15592,7 @@
15582
15592
]
15583
15593
},
15584
15594
"XREADGROUP": {
15585
-
"summary": "Returns new or historical messages from a stream for a consumer in agroup. Blocks until a message is available otherwise.",
15595
+
"summary": "Returns new or historical messages from a stream for a consumer in a group. Blocks until a message is available otherwise.",
15586
15596
"since": "5.0.0",
15587
15597
"group": "stream",
15588
15598
"complexity": "For each stream mentioned: O(M) with M being the number of elements returned. If M is constant (e.g. always asking for the first 10 elements with COUNT), you can consider it O(1). On the other side when XREADGROUP blocks, XADD will pay the O(N) time in order to serve the N clients blocked on the stream getting new data.",
0 commit comments