redis-shake工具
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

114 lines
3.1 KiB

{
"ZRANGESTORE": {
"summary": "Store a range of members from sorted set into another key",
"complexity": "O(log(N)+M) with N being the number of elements in the sorted set and M the number of elements stored into the destination key.",
"group": "sorted_set",
"since": "6.2.0",
"arity": -5,
"function": "zrangestoreCommand",
"command_flags": [
"WRITE",
"DENYOOM"
],
"acl_categories": [
"SORTEDSET"
],
"key_specs": [
{
"flags": [
"OW",
"UPDATE"
],
"begin_search": {
"index": {
"pos": 1
}
},
"find_keys": {
"range": {
"lastkey": 0,
"step": 1,
"limit": 0
}
}
},
{
"flags": [
"RO",
"ACCESS"
],
"begin_search": {
"index": {
"pos": 2
}
},
"find_keys": {
"range": {
"lastkey": 0,
"step": 1,
"limit": 0
}
}
}
],
"arguments": [
{
"name": "dst",
"type": "key",
"key_spec_index": 0
},
{
"name": "src",
"type": "key",
"key_spec_index": 1
},
{
"name": "min",
"type": "string"
},
{
"name": "max",
"type": "string"
},
{
"name": "sortby",
"type": "oneof",
"optional": true,
"arguments": [
{
"name": "byscore",
"type": "pure-token",
"token": "BYSCORE"
},
{
"name": "bylex",
"type": "pure-token",
"token": "BYLEX"
}
]
},
{
"name": "rev",
"token": "REV",
"type": "pure-token",
"optional": true
},
{
"token": "LIMIT",
"name": "offset_count",
"type": "block",
"optional": true,
"arguments": [
{
"name": "offset",
"type": "integer"
},
{
"name": "count",
"type": "integer"
}
]
}
]
}
}