summaryrefslogtreecommitdiff
path: root/src/commands/script-flush.json
blob: 51396f3ac6e80c9fdfa9a25d289d8be850964fa5 (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
35
36
37
38
39
40
41
42
43
{
    "FLUSH": {
        "summary": "Remove all the scripts from the script cache.",
        "complexity": "O(N) with N being the number of scripts in cache",
        "group": "scripting",
        "since": "2.6.0",
        "arity": -2,
        "container": "SCRIPT",
        "function": "scriptCommand",
        "history": [
            [
                "6.2.0",
                "Added the `ASYNC` and `SYNC` flushing mode modifiers, as well as the  **lazyfree-lazy-user-flush** configuration directive."
            ]
        ],
        "command_flags": [
            "NOSCRIPT"
        ],
        "acl_categories": [
            "SCRIPTING"
        ],
        "arguments": [
            {
                "name": "async",
                "type": "oneof",
                "optional": true,
                "since": "6.2.0",
                "arguments": [
                    {
                        "name": "async",
                        "type": "pure-token",
                        "token": "ASYNC"
                    },
                    {
                        "name": "sync",
                        "type": "pure-token",
                        "token": "SYNC"
                    }
                ]
            }
        ]
    }
}