摘要:
PSUBSCRIBE pattern [pattern ...]Listen for messages published to channels matching the given patternsPUBSUB subcommand [argument [argument ...]]Inspec... 阅读全文
摘要:
BGREWRITEAOFAsynchronously rewrite the append-only fileBGSAVEAsynchronously save the dataset to diskCLIENT KILL [ip:port] [ID client-id] [TYPE normal|... 阅读全文
摘要:
AUTH passwordAuthenticate to the serverMore:http://redis.io/commands/auth,http://www.redis.cn/commands/auth.htmlECHO messageEcho the given string127.0... 阅读全文
摘要:
DISCARD Discard all commands issued after MULTI More: http://redis.io/commands/discard, http://www.redis.cn/commands/discard.html EXEC Execute all com 阅读全文
摘要:
ZADD key score member [score member ...]Add one or more members to a sorted set, or update its score if it already exists127.0.0.1:6379> ZADD foo 1 on... 阅读全文
摘要:
SADD key member [member ...]Add one or more members to a set127.0.0.1:6379> SADD foo hello(integer) 1127.0.0.1:6379> SADD foo world(integer) 1127.0.0.... 阅读全文
摘要:
HDEL key field [field ...]Delete one or more hash fields127.0.0.1:6379> HSET book.1 title helloworld(integer) 0127.0.0.1:6379> HEXISTS book.1 title(in... 阅读全文