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.
 
 
 

47 lines
1.2 KiB

{
"SINTER": {
"summary": "Intersect multiple sets",
"complexity": "O(N*M) worst case where N is the cardinality of the smallest set and M is the number of sets.",
"group": "set",
"since": "1.0.0",
"arity": -2,
"function": "sinterCommand",
"command_flags": [
"READONLY"
],
"acl_categories": [
"SET"
],
"command_tips": [
"NONDETERMINISTIC_OUTPUT_ORDER"
],
"key_specs": [
{
"flags": [
"RO",
"ACCESS"
],
"begin_search": {
"index": {
"pos": 1
}
},
"find_keys": {
"range": {
"lastkey": -1,
"step": 1,
"limit": 0
}
}
}
],
"arguments": [
{
"name": "key",
"type": "key",
"key_spec_index": 0,
"multiple": true
}
]
}
}