summaryrefslogtreecommitdiffstats
path: root/src/commands/keys.json
blob: 9dd4e1101b40cd469c32b74eaa763286cff7c9c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
    "KEYS": {
        "summary": "Returns all key names that match a pattern.",
        "complexity": "O(N) with N being the number of keys in the database, under the assumption that the key names in the database and the given pattern have limited length.",
        "group": "generic",
        "since": "1.0.0",
        "arity": 2,
        "function": "keysCommand",
        "command_flags": [
            "READONLY"
        ],
        "acl_categories": [
            "KEYSPACE",
            "DANGEROUS"
        ],
        "command_tips": [
            "REQUEST_POLICY:ALL_SHARDS",
            "NONDETERMINISTIC_OUTPUT_ORDER"
        ],
        "arguments": [
            {
                "name": "pattern",
                "type": "pattern"
            }
        ],
        "reply_schema": {
            "description": "list of keys matching pattern",
            "type": "array",
            "items": {
                "type": "string"
            }
        }
    }
}