summaryrefslogtreecommitdiffstats
path: root/src/commands/slaveof.json
blob: 6595960f949e55543e3b026ee2707f4d2ee4707b (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
    "SLAVEOF": {
        "summary": "Sets a Redis server as a replica of another, or promotes it to being a master.",
        "complexity": "O(1)",
        "group": "server",
        "since": "1.0.0",
        "arity": 3,
        "function": "replicaofCommand",
        "deprecated_since": "5.0.0",
        "replaced_by": "`REPLICAOF`",
        "doc_flags": [
            "DEPRECATED"
        ],
        "command_flags": [
            "NO_ASYNC_LOADING",
            "ADMIN",
            "NOSCRIPT",
            "STALE"
        ],
        "arguments": [
            {
                "name": "args",
                "type": "oneof",
                "arguments": [
                    {
                        "name": "host-port",
                        "type": "block",
                        "arguments": [
                            {
                                "name": "host",
                                "type": "string"
                            },
                            {
                                "name": "port",
                                "type": "integer"
                            }
                        ]
                    },
                    {
                        "name": "no-one",
                        "type": "block",
                        "arguments": [
                            {
                                "name": "no",
                                "type": "pure-token",
                                "token": "NO"
                            },
                            {
                                "name": "one",
                                "type": "pure-token",
                                "token": "ONE"
                            }
                        ]
                    }
                ]
            }
        ],
        "reply_schema": {
            "description": "slaveOf status",
            "type": "string",
            "pattern": "OK*"
        }
    }
}