forked from huangzworks/redis
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8798dcc
commit 1dcf827
Showing
12 changed files
with
235 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Connection(连接) | ||
====================== | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
auth | ||
echo | ||
ping | ||
quit | ||
select |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Hash(哈希表) | ||
========================= | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
hdel | ||
hexists | ||
hget | ||
hgetall | ||
hincrby | ||
hincrbyfloat | ||
hkeys | ||
hlen | ||
hmget | ||
hmset | ||
hset | ||
hsetnx | ||
hvals |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Key(键) | ||
================= | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
del | ||
dump | ||
exists | ||
expire | ||
expireat | ||
keys | ||
migrate | ||
move | ||
object | ||
persist | ||
pexpire | ||
pexpireat | ||
pttl | ||
randomkey | ||
rename | ||
renamenx | ||
restore | ||
sort | ||
ttl | ||
type |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
List(列表) | ||
================ | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
blpop | ||
brpop | ||
brpoplpush | ||
lindex | ||
linsert | ||
llen | ||
lpop | ||
lpush | ||
lpushx | ||
lrange | ||
lrem | ||
lset | ||
ltrim | ||
rpop | ||
rpoplpush | ||
rpush | ||
rpushx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Pub/Sub(发布/订阅) | ||
======================= | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
psubscribe | ||
publish | ||
pubsub | ||
punsubscribe | ||
subscribe | ||
unsubscribe | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Script(脚本) | ||
====================== | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
eval | ||
evalsha | ||
script_exists | ||
script_flush | ||
script_kill | ||
script_load |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
Server(服务器) | ||
=================== | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
bgrewriteaof | ||
bgsave | ||
client_getname | ||
client_kill | ||
client_list | ||
client_setname | ||
config_get | ||
config_resetstat | ||
config_rewrite | ||
config_set | ||
dbsize | ||
debug_object | ||
debug_segfault | ||
flushall | ||
flushdb | ||
info | ||
lastsave | ||
monitor | ||
psync | ||
save | ||
shutdown | ||
slaveof | ||
slowlog | ||
sync | ||
time | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Set(集合) | ||
====================== | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
sadd | ||
scard | ||
sdiff | ||
sdiffstore | ||
sinter | ||
sinterstore | ||
sismember | ||
smembers | ||
smove | ||
spop | ||
srandmember | ||
srem | ||
sunion | ||
sunionstore | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
SortedSet(有序集合) | ||
========================== | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
zadd | ||
zcard | ||
zcount | ||
zincrby | ||
zrange | ||
zrangebyscore | ||
zrank | ||
zrem | ||
zremrangebyrank | ||
zremrangebyscore | ||
zrevrange | ||
zrevrangebyscore | ||
zrevrank | ||
zscore | ||
zunionstore | ||
zinterstore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
String(字符串) | ||
=================== | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
append | ||
bitcount | ||
bitop | ||
decr | ||
decrby | ||
get | ||
getbit | ||
getrange | ||
getset | ||
incr | ||
incrby | ||
incrbyfloat | ||
mget | ||
mset | ||
msetnx | ||
psetex | ||
set | ||
setbit | ||
setex | ||
setnx | ||
setrange | ||
strlen |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Transaction(事务) | ||
======================= | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
discard | ||
exec | ||
multi | ||
unwatch | ||
watch |