forked from wentaozone/rediscn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
commands.html
210 lines (207 loc) · 8.68 KB
/
commands.html
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href='/css/styles.css' rel='stylesheet' type='text/css' />
<link href='/images/favicon.png' rel='shortcut icon' />
<script src='/js/jquery.min.1.4.js'></script>
<script src='/js/app.js'></script>
<script src='/js/common.js'></script>
<meta content='width=device-width, minimum-scale=1.0, maximum-scale=1.0' name='viewport' />
<title>Redis命令(commands) -- redis中文资料站</title>
<meta http-equiv="description" content="redis 命令(commands)列表,列出Redis的全部功能命令集合,介绍各个命令的参数和用法。" />
</head>
<body class=''>
<script src='/js/head.js'></script>
<section id='commands'>
<nav>
<a href='#'>全部(All)</a>
<a href='#generic'>关键字(Keys)</a>
<a href='#string'>字符串(String)</a>
<a href='#hash'>哈希(Hashs)</a>
<a href='#list'>列表(Lists)</a>
<a href='#set'>集合(Sets)</a>
<a href='#sorted_set'>有序集合(Sorted Sets)</a><br/>
<a href='#pubsub'>发布/订阅(Pub/Sub)</a>
<a href='#transactions'>事务(Transactions)</a>
<a href='#scripting'>脚本(Scripting)</a>
<a href='#connection'>连接(Connection)</a>
<a href='#server'>服务(Server)</a>
</nav>
<script type='text/javascript'>
document.write('<ul>');
showCommandsHtmlItem('append');
showCommandsHtmlItem('auth');
showCommandsHtmlItem('bgrewriteaof');
showCommandsHtmlItem('bgsave');
showCommandsHtmlItem('bitcount');
showCommandsHtmlItem('bitop');
showCommandsHtmlItem('blpop');
showCommandsHtmlItem('brpop');
showCommandsHtmlItem('brpoplpush');
showCommandsHtmlItem('client-kill');
showCommandsHtmlItem('client-list');
showCommandsHtmlItem('client-pause');
showCommandsHtmlItem('client-getname');
showCommandsHtmlItem('client-setname');
showCommandsHtmlItem('config-get');
showCommandsHtmlItem('config-rewrite');
showCommandsHtmlItem('config-set');
showCommandsHtmlItem('config-resetstat');
showCommandsHtmlItem('dbsize');
showCommandsHtmlItem('debug-object');
showCommandsHtmlItem('debug-segfault');
showCommandsHtmlItem('decr');
showCommandsHtmlItem('decrby');
showCommandsHtmlItem('del');
showCommandsHtmlItem('discard');
showCommandsHtmlItem('dump');
showCommandsHtmlItem('echo');
showCommandsHtmlItem('eval');
showCommandsHtmlItem('evalsha');
showCommandsHtmlItem('exec');
showCommandsHtmlItem('exists');
showCommandsHtmlItem('expire');
showCommandsHtmlItem('expireat');
showCommandsHtmlItem('flushall');
showCommandsHtmlItem('flushdb');
showCommandsHtmlItem('get');
showCommandsHtmlItem('getbit');
showCommandsHtmlItem('getrange');
showCommandsHtmlItem('getset');
showCommandsHtmlItem('hdel');
showCommandsHtmlItem('hexists');
showCommandsHtmlItem('hget');
showCommandsHtmlItem('hgetall');
showCommandsHtmlItem('hincrby');
showCommandsHtmlItem('hincrbyfloat');
showCommandsHtmlItem('hkeys');
showCommandsHtmlItem('hlen');
showCommandsHtmlItem('hmget');
showCommandsHtmlItem('hmset');
showCommandsHtmlItem('hscan');
showCommandsHtmlItem('hset');
showCommandsHtmlItem('hsetnx');
showCommandsHtmlItem('hvals');
showCommandsHtmlItem('incr');
showCommandsHtmlItem('incrby');
showCommandsHtmlItem('incrbyfloat');
showCommandsHtmlItem('info');
showCommandsHtmlItem('keys');
showCommandsHtmlItem('lastsave');
showCommandsHtmlItem('lindex');
showCommandsHtmlItem('linsert');
showCommandsHtmlItem('llen');
showCommandsHtmlItem('lpop');
showCommandsHtmlItem('lpush');
showCommandsHtmlItem('lpushx');
showCommandsHtmlItem('lrange');
showCommandsHtmlItem('lrem');
showCommandsHtmlItem('lset');
showCommandsHtmlItem('ltrim');
showCommandsHtmlItem('mget');
showCommandsHtmlItem('migrate');
showCommandsHtmlItem('monitor');
showCommandsHtmlItem('move');
showCommandsHtmlItem('mset');
showCommandsHtmlItem('msetnx');
showCommandsHtmlItem('multi');
showCommandsHtmlItem('object');
showCommandsHtmlItem('persist');
showCommandsHtmlItem('pexpire');
showCommandsHtmlItem('pexpireat');
showCommandsHtmlItem('ping');
showCommandsHtmlItem('psetex');
showCommandsHtmlItem('psubscribe');
showCommandsHtmlItem('pttl');
showCommandsHtmlItem('publish');
showCommandsHtmlItem('pubsub');
showCommandsHtmlItem('punsubscribe');
showCommandsHtmlItem('quit');
showCommandsHtmlItem('randomkey');
showCommandsHtmlItem('rename');
showCommandsHtmlItem('renamenx');
showCommandsHtmlItem('restore');
showCommandsHtmlItem('rpop');
showCommandsHtmlItem('rpoplpush');
showCommandsHtmlItem('rpush');
showCommandsHtmlItem('rpushx');
showCommandsHtmlItem('sadd');
showCommandsHtmlItem('save');
showCommandsHtmlItem('scard');
showCommandsHtmlItem('scan');
showCommandsHtmlItem('script-exists');
showCommandsHtmlItem('script-flush');
showCommandsHtmlItem('script-kill');
showCommandsHtmlItem('script-load');
showCommandsHtmlItem('sdiff');
showCommandsHtmlItem('sdiffstore');
showCommandsHtmlItem('select');
showCommandsHtmlItem('set');
showCommandsHtmlItem('setbit');
showCommandsHtmlItem('setex');
showCommandsHtmlItem('setnx');
showCommandsHtmlItem('setrange');
showCommandsHtmlItem('shutdown');
showCommandsHtmlItem('sinter');
showCommandsHtmlItem('sinterstore');
showCommandsHtmlItem('sismember');
showCommandsHtmlItem('slaveof');
showCommandsHtmlItem('slowlog');
showCommandsHtmlItem('smembers');
showCommandsHtmlItem('smove');
showCommandsHtmlItem('sort');
showCommandsHtmlItem('spop');
showCommandsHtmlItem('srandmember');
showCommandsHtmlItem('srem');
showCommandsHtmlItem('sscan');
showCommandsHtmlItem('strlen');
showCommandsHtmlItem('subscribe');
showCommandsHtmlItem('sunion');
showCommandsHtmlItem('sunionstore');
showCommandsHtmlItem('sync');
showCommandsHtmlItem('time');
showCommandsHtmlItem('ttl');
showCommandsHtmlItem('type');
showCommandsHtmlItem('unsubscribe');
showCommandsHtmlItem('unwatch');
showCommandsHtmlItem('watch');
showCommandsHtmlItem('zadd');
showCommandsHtmlItem('zcard');
showCommandsHtmlItem('zcount');
showCommandsHtmlItem('zincrby');
showCommandsHtmlItem('zinterstore');
showCommandsHtmlItem('zrange');
showCommandsHtmlItem('zrangebyscore');
showCommandsHtmlItem('zrank');
showCommandsHtmlItem('zrem');
showCommandsHtmlItem('zremrangebyrank');
showCommandsHtmlItem('zremrangebyscore');
showCommandsHtmlItem('zrevrange');
showCommandsHtmlItem('zrevrangebyscore');
showCommandsHtmlItem('zrevrank');
showCommandsHtmlItem('zscan');
showCommandsHtmlItem('zscore');
showCommandsHtmlItem('zunionstore');
document.write('</ul>');
</script>
</section>
<div class='text' style="width:100%; max-width:93%;word-wrap:break-word;">
<section >
redis所有已知命令:<br/>
append,auth,bgrewriteaof,bgsave,bitcount,bitop,blpop,brpop,brpoplpush,client-kill,client-list,client-getname,
client-setname,config-get,config-set,config-resetstat,dbsize,debug-object,debug-segfault,decr,decrby,del,discard,
dump,echo,eval,evalsha,exec,exists,expire,expireat,flushall,flushdb,get,getbit,getrange,getset,hdel,hexists,hget,
hgetall,hincrby,hincrbyfloat,hkeys,hlen,hmget,hmset,hset,hsetnx,hvals,incr,incrby,incrbyfloat,info,keys,lastsave,
lindex,linsert,llen,lpop,lpush,lpushx,lrange,lrem,lset,ltrim,mget,migrate,monitor,move,mset,msetnx,multi,object,
persist,pexpire,pexpireat,ping,psetex,psubscribe,pttl,publish,punsubscribe,quit,randomkey,rename,renamenx,restore,
rpop,rpoplpush,rpush,rpushx,sadd,save,scard,script-exists,script-flush,script-kill,script-load,sdiff,sdiffstore,
select,set,setbit,setex,setnx,setrange,shutdown,sinter,sinterstore,sismember,slaveof,slowlog,smembers,smove,sort,
spop,srandmember,srem,strlen,subscribe,sunion,sunionstore,sync,time,ttl,type,unsubscribe,unwatch,watch,zadd,zcard,
zcount,zincrby,zinterstore,zrange,zrangebyscore,zrank,zrem,zremrangebyrank,zremrangebyscore,zrevrange,
zrevrangebyscore,zrevrank,zscore,zunionstore,pubsub,config-rewrite,client-pause,hscan,scan,sscan,zscan,
</section>
</div>
<script src='/js/foot.js'></script>
</body>
</html>