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: libs/resources/RespCommandsDocs.json
+104
Original file line number
Diff line number
Diff line change
@@ -773,6 +773,110 @@
773
773
}
774
774
]
775
775
},
776
+
{
777
+
"Command": "BZMPOP",
778
+
"Name": "BZMPOP",
779
+
"Summary": "Removes and returns a member by score from one or more sorted sets. Blocks until a member is available otherwise. Deletes the sorted set if the last element was popped.",
780
+
"Group": "SortedSet",
781
+
"Complexity": "O(K) \u002B O(M*log(N)) where K is the number of provided keys, N being the number of elements in the sorted set, and M being the number of elements popped.",
"Summary": "Removes and returns the member with the highest score from one or more sorted sets. Blocks until a member available otherwise. Deletes the sorted set if the last element was popped.",
838
+
"Group": "SortedSet",
839
+
"Complexity": "O(log(N)) with N being the number of elements in the sorted set.",
840
+
"Arguments": [
841
+
{
842
+
"TypeDiscriminator": "RespCommandKeyArgument",
843
+
"Name": "KEY",
844
+
"DisplayText": "key",
845
+
"Type": "Key",
846
+
"ArgumentFlags": "Multiple",
847
+
"KeySpecIndex": 0
848
+
},
849
+
{
850
+
"TypeDiscriminator": "RespCommandBasicArgument",
851
+
"Name": "TIMEOUT",
852
+
"DisplayText": "timeout",
853
+
"Type": "Double"
854
+
}
855
+
]
856
+
},
857
+
{
858
+
"Command": "BZPOPMIN",
859
+
"Name": "BZPOPMIN",
860
+
"Summary": "Removes and returns the member with the lowest score from one or more sorted sets. Blocks until a member is available otherwise. Deletes the sorted set if the last element was popped.",
861
+
"Group": "SortedSet",
862
+
"Complexity": "O(log(N)) with N being the number of elements in the sorted set.",
0 commit comments