mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 08:38:27 -05:00
48 lines
1.1 KiB
JSON
48 lines
1.1 KiB
JSON
|
{
|
||
|
"HEXISTS": {
|
||
|
"summary": "Determine if a hash field exists",
|
||
|
"complexity": "O(1)",
|
||
|
"group": "hash",
|
||
|
"since": "2.0.0",
|
||
|
"arity": 3,
|
||
|
"function": "hexistsCommand",
|
||
|
"command_flags": [
|
||
|
"READONLY",
|
||
|
"FAST"
|
||
|
],
|
||
|
"acl_categories": [
|
||
|
"HASH"
|
||
|
],
|
||
|
"key_specs": [
|
||
|
{
|
||
|
"flags": [
|
||
|
"READ"
|
||
|
],
|
||
|
"begin_search": {
|
||
|
"index": {
|
||
|
"pos": 1
|
||
|
}
|
||
|
},
|
||
|
"find_keys": {
|
||
|
"range": {
|
||
|
"lastkey": 0,
|
||
|
"step": 1,
|
||
|
"limit": 0
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
],
|
||
|
"arguments": [
|
||
|
{
|
||
|
"name": "key",
|
||
|
"type": "key",
|
||
|
"key_spec_index": 0
|
||
|
},
|
||
|
{
|
||
|
"name": "field",
|
||
|
"type": "string"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|