update doc

This commit is contained in:
siddontang 2014-09-29 14:19:42 +08:00
parent e143448fdd
commit de46e1a511
2 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
//This file was generated by .tools/generate_commands.py on Thu Sep 25 2014 09:51:10 +0800 //This file was generated by .tools/generate_commands.py on Mon Sep 29 2014 14:19:33 +0800
package main package main
var helpCommands = [][]string{ var helpCommands = [][]string{
@ -86,7 +86,7 @@ var helpCommands = [][]string{
{"SINTER", "key [key ...]", "Set"}, {"SINTER", "key [key ...]", "Set"},
{"SINTERSTORE", "destination key [key ...]", "Set"}, {"SINTERSTORE", "destination key [key ...]", "Set"},
{"SISMEMBER", "key member", "Set"}, {"SISMEMBER", "key member", "Set"},
{"SLAVEOF", "host port", "Replication"}, {"SLAVEOF", "host port [restart]", "Replication"},
{"SMCLEAR", "key [key ...]", "Set"}, {"SMCLEAR", "key [key ...]", "Set"},
{"SMEMBERS", "key", "Set"}, {"SMEMBERS", "key", "Set"},
{"SPERSIST", "key", "Set"}, {"SPERSIST", "key", "Set"},
@ -95,7 +95,7 @@ var helpCommands = [][]string{
{"SUNION", "key [key ...]", "Set"}, {"SUNION", "key [key ...]", "Set"},
{"SUNIONSTORE", "destination key [key ...]", "Set"}, {"SUNIONSTORE", "destination key [key ...]", "Set"},
{"SXSCAN", "key [MATCH match] [COUNT count]", "Set"}, {"SXSCAN", "key [MATCH match] [COUNT count]", "Set"},
{"SYNC", "index offset", "Replication"}, {"SYNC", "logid", "Replication"},
{"TTL", "key", "KV"}, {"TTL", "key", "KV"},
{"XSCAN", "key [MATCH match] [COUNT count]", "KV"}, {"XSCAN", "key [MATCH match] [COUNT count]", "KV"},
{"ZADD", "key score member [score member ...]", "ZSet"}, {"ZADD", "key score member [score member ...]", "ZSet"},

View File

@ -301,12 +301,12 @@
"readonly": false "readonly": false
}, },
"SLAVEOF": { "SLAVEOF": {
"arguments": "host port", "arguments": "host port [restart]",
"group": "Replication", "group": "Replication",
"readonly": false "readonly": false
}, },
"SYNC": { "SYNC": {
"arguments": "index offset", "arguments": "logid",
"group": "Replication", "group": "Replication",
"readonly": false "readonly": false
}, },