summaryrefslogtreecommitdiffstats
path: root/src/commands/keys.json
blob: 546241f95c3b9700d585fdad74a8c498e80b7fd9 (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
{
    "KEYS": {
        "summary": "Find all keys matching the given 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"
            }
        ]
    }
}