2022-12-01 09:06:44 +08:00
|
|
|
|
Redis 备忘清单
|
|
|
|
|
===
|
|
|
|
|
|
|
|
|
|
本备忘单旨在快速理解 [redis](https://redis.io/) 所涉及的主要概念,提供了最常用的SQL语句,供您参考。
|
|
|
|
|
|
|
|
|
|
入门
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
### 介绍
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
Redis 是一个 `key-value` 存储系统类似 Memcached
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
- 它支持存储的 value 类型相对更多,包括string(字符串)、list(链表)、set(集合)、zset(sorted set 有序集合)和hash(哈希类型)
|
2022-12-01 09:47:29 +08:00
|
|
|
|
- 数据类型都支持 push/pop、add/remove 及取交集并集和差集及更丰富的操作
|
|
|
|
|
|
|
|
|
|
启动 Redis
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
$ redis-server &
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
使用 CLI 登陆 redis
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
$ redis-cli
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
使用 Telnet 的登陆 redis
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
$ telnet 127.0.0.1 6379
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### 小试
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### Ping 测试
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> PING
|
|
|
|
|
PONG
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 经典 Hello World
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET mykey "Hello world"
|
|
|
|
|
OK
|
|
|
|
|
redis> GET mykey
|
|
|
|
|
"Hello world"
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### 数据类型
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
- [Strings(字符串)](#redis-字符串类型设置)
|
|
|
|
|
- [Lists(列表)](#redis-列表类型设置)
|
|
|
|
|
- [Hashes(哈希)](#redis-哈希类型设置)
|
|
|
|
|
- [Sets(集合)](#redis-集合类型设置)
|
|
|
|
|
- [Sorted Sets(有序集合)](#redis-排序集类型设置)
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
Redis 支持以上 5 种数据类型
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
Redis服务相关的命令设置
|
|
|
|
|
------------
|
|
|
|
|
|
|
|
|
|
### COMMAND
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
COMMAND
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> COMMAND
|
|
|
|
|
1) 1) "georadius_ro"
|
|
|
|
|
2) (integer) -6
|
|
|
|
|
3) 1) "readonly"
|
|
|
|
|
2) "movablekeys"
|
|
|
|
|
4) (integer) 1
|
|
|
|
|
5) (integer) 1
|
|
|
|
|
6) (integer) 1
|
|
|
|
|
7) 1) "@read"
|
|
|
|
|
2) "@geo"
|
|
|
|
|
3) "@slow"
|
|
|
|
|
2) 1) "zpopmin"
|
|
|
|
|
2) (integer) -2
|
|
|
|
|
3) 1) "write"
|
|
|
|
|
2) "fast"
|
|
|
|
|
........
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
获取 Redis 命令详细信息的数组
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### 一些引用(可能有帮助)
|
2022-12-01 09:06:44 +08:00
|
|
|
|
<!--rehype:wrap-class=col-span-2 row-span-4-->
|
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
:- | --
|
|
|
|
|
:- | --
|
|
|
|
|
[ACL LOAD](https://redis.io/commands/acl-load) | 从配置的 ACL 文件重新加载 ACL
|
|
|
|
|
[ACL SAVE](https://redis.io/commands/acl-save) | 将当前的 ACL 规则保存在配置的 ACL 文件中
|
|
|
|
|
[ACL LIST](https://redis.io/commands/acl-list) | 以 ACL 配置文件格式列出当前的 ACL 规则
|
|
|
|
|
[ACL USERS](https://redis.io/commands/acl-users) | 列出所有配置的ACL规则的用户名
|
|
|
|
|
[ACL GETUSER](https://redis.io/commands/acl-getuser) | 获取特定 ACL 用户的规则
|
|
|
|
|
[ACL SETUSER](https://redis.io/commands/acl-setuser) | 修改或创建特定 ACL 用户的规则
|
|
|
|
|
[ACL DELUSER](https://redis.io/commands/acl-deluser) | 删除指定的 ACL 用户和关联的规则
|
|
|
|
|
[ACL CAT](https://redis.io/commands/acl-cat) | 列出 ACL 类别或类别内的命令
|
|
|
|
|
[ACL GENPASS](https://redis.io/commands/acl-genpass) | 生成用于 ACL 用户的伪随机安全密码
|
|
|
|
|
[ACL WHOAMI](https://redis.io/commands/acl-whoami) | 返回关联到当前连接的用户的名称
|
|
|
|
|
[ACL LOG](https://redis.io/commands/acl-log) | 列出由于 ACL 到位而被拒绝的最新事件
|
|
|
|
|
[ACL HELP](https://redis.io/commands/acl-help) | 显示有关ACL访问控制的帮助信息
|
|
|
|
|
[BGREWRITEAOF](https://redis.io/commands/bgrewriteaof) | 异步重写 append-only 文件
|
|
|
|
|
[BGSAVE](https://redis.io/commands/bgsave) | 将数据集异步保存到磁盘
|
|
|
|
|
[CONFIG GET](https://redis.io/commands/config-get) | 获取配置参数的值
|
|
|
|
|
[CONFIG REWRITE](https://redis.io/commands/config-rewrite) | 用内存中的配置重写配置文件
|
|
|
|
|
[CONFIG SET](https://redis.io/commands/config-set) | 将配置参数设置为给定值
|
|
|
|
|
[CONFIG RESETSTAT](https://redis.io/commands/config-resetstat) | 重置 INFO 返回的统计数据
|
|
|
|
|
[DBSIZE](https://redis.io/commands/dbsize) | 返回所选数据库中的键数
|
|
|
|
|
[DEBUG OBJECT](https://redis.io/commands/debug-object) | 获取某个key的调试信息
|
|
|
|
|
[DEBUG SEGFAULT](https://redis.io/commands/debug-segfault) | 使服务器崩溃
|
|
|
|
|
[FLUSHALL](https://redis.io/commands/flushall) | 从所有数据库中删除所有密钥
|
|
|
|
|
[FLUSHDB](https://redis.io/commands/flushdb) | 从当前数据库中删除所有键
|
|
|
|
|
[LOLWUT](https://redis.io/commands/lolwut) | 显示一些计算机信息和 Redis 版本
|
|
|
|
|
[LASTSAVE](https://redis.io/commands/lastsave) | 获取上次成功保存到磁盘的 UNIX 时间戳
|
|
|
|
|
[MEMORY DOCTOR](https://redis.io/commands/memory-doctor) | 输出内存问题报告
|
|
|
|
|
[MEMORY HELP](https://redis.io/commands/memory-help) | 显示有关内存的使用帮助
|
|
|
|
|
[MEMORY MALLOC-STATS](https://redis.io/commands/memory-malloc-stats) | 显示分配器内部统计
|
|
|
|
|
[MEMORY PURGE](https://redis.io/commands/memory-purge) | 要求分配器释放内存
|
|
|
|
|
[MEMORY STATS](https://redis.io/commands/memory-stats) | 显示内存使用详情(该死,运维的我经常用到)
|
|
|
|
|
[MEMORY USAGE](https://redis.io/commands/memory-usage) | 估计一个键的内存使用
|
|
|
|
|
[MODULE LIST](https://redis.io/commands/module-list) | 列出服务器加载的所有模块
|
|
|
|
|
[MODULE LOAD](https://redis.io/commands/module-load) | 加载模块
|
|
|
|
|
[MODULE UNLOAD](https://redis.io/commands/module-unload) | 卸载模块
|
|
|
|
|
[MONITOR](https://redis.io/commands/monitor) | 实时监听服务器收到的所有请求
|
|
|
|
|
[SAVE](https://redis.io/commands/save) | 将数据集同步保存到磁盘
|
|
|
|
|
[SHUTDOWN](https://redis.io/commands/shutdown) | 将数据集同步保存到磁盘,然后关闭服务器
|
|
|
|
|
[~~SLAVEOF~~](https://redis.io/commands/slaveof) | 使服务器成为另一个实例的副本,或将其提升为主服务器<br> _(从Redis 5开始<red>弃用</red>,改成 `REPLICAOF`了)_
|
|
|
|
|
[REPLICAOF](https://redis.io/commands/replicaof) | 使服务器成为另一个实例的副本,或将其提升为主服务器
|
|
|
|
|
[SLOWLOG](https://redis.io/commands/slowlog) | 管理 Redis 慢查询日志
|
|
|
|
|
[SWAPDB](https://redis.io/commands/swapdb) | 交换两个Redis数据库
|
|
|
|
|
[SYNC](https://redis.io/commands/sync) | 用于复制的内部命令(主)
|
|
|
|
|
[PSYNC](https://redis.io/commands/psync) | 用于复制的内部命令(备)
|
|
|
|
|
[LATENCY DOCTOR](https://redis.io/commands/latency-doctor) | 返回人类可读的延迟分析报告
|
|
|
|
|
[LATENCY GRAPH](https://redis.io/commands/latency-graph) | 返回事件的延迟图
|
|
|
|
|
[LATENCY HISTORY](https://redis.io/commands/latency-history) | 返回事件的时间戳延迟样本
|
|
|
|
|
[LATENCY LATEST](https://redis.io/commands/latency-latest) | 返回所有事件的最新延迟样本
|
|
|
|
|
[LATENCY RESET](https://redis.io/commands/latency-reset) | 重置一个或多个事件的延迟数据
|
|
|
|
|
[LATENCY HELP](https://redis.io/commands/latency-help) | 显示有关不同子命令的有用文本
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
### COMMAND COUNT
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
COMMAND COUNT
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> COMMAND COUNT
|
|
|
|
|
(integer) 217
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 09:06:44 +08:00
|
|
|
|
获取 Redis 命令总数
|
|
|
|
|
|
|
|
|
|
### COMMAND GETKEYS
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
COMMAND GETKEYS
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> COMMAND GETKEYS MSET a b c d e f
|
|
|
|
|
1) "a"
|
|
|
|
|
2) "c"
|
|
|
|
|
3) "e"
|
|
|
|
|
redis> COMMAND GETKEYS EVAL "not consulted" 3 key1 key2 key3 arg1 arg2 arg3 argN
|
|
|
|
|
1) "key1"
|
|
|
|
|
2) "key2"
|
|
|
|
|
3) "key3"
|
|
|
|
|
redis> COMMAND GETKEYS SORT mylist ALPHA STORE outlist
|
|
|
|
|
1) "mylist"
|
|
|
|
|
2) "outlist"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
给定完整的 Redis 命令提取密钥
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### COMMAND INFO
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
COMMAND INFO command-name [command-name ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> COMMAND INFO get set eval
|
|
|
|
|
1) 1) "get"
|
|
|
|
|
2) (integer) 2
|
|
|
|
|
3) 1) "readonly"
|
|
|
|
|
2) "fast"
|
|
|
|
|
4) (integer) 1
|
|
|
|
|
5) (integer) 1
|
|
|
|
|
6) (integer) 1
|
|
|
|
|
7) 1) "@read"
|
|
|
|
|
2) "@string"
|
|
|
|
|
3) "@fast"
|
|
|
|
|
2) 1) "set"
|
|
|
|
|
2) (integer) -3
|
|
|
|
|
3) 1) "write"
|
|
|
|
|
2) "denyoom"
|
|
|
|
|
4) (integer) 1
|
|
|
|
|
5) (integer) 1
|
|
|
|
|
6) (integer) 1
|
|
|
|
|
7) 1) "@write"
|
|
|
|
|
2) "@string"
|
|
|
|
|
3) "@slow"
|
|
|
|
|
3) 1) "eval"
|
|
|
|
|
2) (integer) -3
|
|
|
|
|
3) 1) "noscript"
|
|
|
|
|
2) "movablekeys"
|
|
|
|
|
4) (integer) 0
|
|
|
|
|
5) (integer) 0
|
|
|
|
|
6) (integer) 0
|
|
|
|
|
7) 1) "@slow"
|
|
|
|
|
2) "@scripting"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
获取特定 Redis 命令详细信息的数组
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### INFO
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
INFO [section]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> INFO
|
|
|
|
|
# Server
|
|
|
|
|
redis_version:6.1.240
|
|
|
|
|
redis_git_sha1:00000000
|
|
|
|
|
redis_git_dirty:0
|
|
|
|
|
redis_build_id:a26db646ea64a07c
|
|
|
|
|
redis_mode:standalone
|
|
|
|
|
os:Linux 5.4.0-1017-aws x86_64
|
|
|
|
|
......
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
获取有关服务器的信息和统计信息
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
### ROLE
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ROLE
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ROLE
|
|
|
|
|
1) "master"
|
|
|
|
|
2) (integer) 0
|
|
|
|
|
3) (empty list or set)
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
返回实例在复制上下文中的角色
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
### TIME
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
TIME
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> TIME
|
|
|
|
|
1) "1609040690"
|
|
|
|
|
2) "558952"
|
|
|
|
|
redis> TIME
|
|
|
|
|
1) "1609040690"
|
|
|
|
|
2) "559206"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
返回当前服务器时间
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
Redis一些通用的命令
|
|
|
|
|
------------
|
|
|
|
|
|
|
|
|
|
### 一些引用(可能有帮助)
|
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
:- | --
|
|
|
|
|
:- | --
|
|
|
|
|
[COPY](https://redis.io/commands/copy) | 复制键值对
|
|
|
|
|
[MIGRATE](https://redis.io/commands/migrate) | 以原子方式将键值对从 Redis 实例传输到另一个实例
|
|
|
|
|
[MOVE](https://redis.io/commands/move) | 将键值对移动到另一个数据库
|
|
|
|
|
[OBJECT](https://redis.io/commands/object) | 检查 Redis 对象的内部结构
|
|
|
|
|
[RESTORE](https://redis.io/commands/restore) | 使用提供的序列化值创建键值对,之前使用 DUMP 获得
|
|
|
|
|
[SORT](https://redis.io/commands/sort) | 对列表、集合或有序集合中的元素进行排序
|
|
|
|
|
[WAIT](https://redis.io/commands/wait) | 等待在当前连接的上下文中发送的所有写命令的同步复制
|
|
|
|
|
[SCAN](https://redis.io/commands/scan) | 增量迭代键空间
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### DEL
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
DEL key [key ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET key1 "Hello"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> SET key2 "World"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> DEL key1 key2 key3
|
|
|
|
|
(integer) 2
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
删除键值对
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### DUMP
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
DUMP key
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET mykey 10
|
|
|
|
|
"OK"
|
|
|
|
|
redis> DUMP mykey
|
|
|
|
|
"\u0000\xC0\n\t\u0000\xBEm\u0006\x89Z(\u0000\n"
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 09:06:44 +08:00
|
|
|
|
返回存储在指定键中的值的序列化版本
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### EXISTS
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
EXISTS key [key ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET key1 "Hello"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> EXISTS key1
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> EXISTS nosuchkey
|
|
|
|
|
(integer) 0
|
|
|
|
|
redis> SET key2 "World"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> EXISTS key1 key2 nosuchkey
|
|
|
|
|
(integer) 2
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 09:06:44 +08:00
|
|
|
|
判断键值对是否存在
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### EXPIRE
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
EXPIRE key seconds
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET mykey "Hello"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> EXPIRE mykey 10
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> TTL mykey
|
|
|
|
|
(integer) 10
|
|
|
|
|
redis> SET mykey "Hello World"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> TTL mykey
|
|
|
|
|
(integer) -1
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
设置键值对的生存时间(以秒为单位)
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### EXPIREAT
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
EXPIREAT key timestamp
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET mykey "Hello"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> EXISTS mykey
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> EXPIREAT mykey 1293840000
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> EXISTS mykey
|
|
|
|
|
(integer) 0
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 09:06:44 +08:00
|
|
|
|
将键值对的到期时间设置为 UNIX 时间戳
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### KEYS
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
KEYS pattern
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> MSET firstname Jack lastname Stuntman age 35
|
|
|
|
|
"OK"
|
|
|
|
|
redis> KEYS *name*
|
|
|
|
|
1) "firstname"
|
|
|
|
|
2) "lastname"
|
|
|
|
|
redis> KEYS a??
|
|
|
|
|
1) "age"
|
|
|
|
|
redis> KEYS *
|
|
|
|
|
1) "firstname"
|
|
|
|
|
2) "age"
|
|
|
|
|
3) "lastname"
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 09:06:44 +08:00
|
|
|
|
查找与给定模式匹配的所有键
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### PERSIST
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
PERSIST key
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET mykey "Hello"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> EXPIRE mykey 10
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> TTL mykey
|
|
|
|
|
(integer) 10
|
|
|
|
|
redis> PERSIST mykey
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> TTL mykey
|
|
|
|
|
(integer) -1
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
从键值对中删除过期时间
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### PEXPIRE
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
PEXPIRE key milliseconds
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET mykey "Hello"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> PEXPIRE mykey 1500
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> TTL mykey
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> PTTL mykey
|
|
|
|
|
(integer) 1499
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
设置键的生存时间(以毫秒为单位)
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### PEXPIREAT
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
PEXPIREAT key milliseconds-timestamp
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET mykey "Hello"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> PEXPIREAT mykey 1555555555005
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> TTL mykey
|
|
|
|
|
(integer) -2
|
|
|
|
|
redis> PTTL mykey
|
|
|
|
|
(integer) -2
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 09:06:44 +08:00
|
|
|
|
将键值对的到期时间设置为以毫秒为单位指定的 UNIX 时间戳
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### PTTL
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
PTTL key
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET mykey "Hello"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> EXPIRE mykey 1
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> PTTL mykey
|
|
|
|
|
(integer) 1000
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
以毫秒为单位获取键值对的生存时间
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### RENAME
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
RENAME key newkey
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET mykey "Hello"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> RENAME mykey myotherkey
|
|
|
|
|
"OK"
|
|
|
|
|
redis> GET myotherkey
|
|
|
|
|
"Hello"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
重命名键值对
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### RENAMENX
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
RENAMENX key newkey
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET mykey "Hello"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> SET myotherkey "World"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> RENAMENX mykey myotherkey
|
|
|
|
|
(integer) 0
|
|
|
|
|
redis> GET myotherkey
|
|
|
|
|
"World"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
重命名键值对,仅当新键值对不存在时
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### TOUCH
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
TOUCH key [key ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET key1 "Hello"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> SET key2 "World"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> TOUCH key1 key2
|
|
|
|
|
(integer) 2
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 09:06:44 +08:00
|
|
|
|
更改键值对的最后访问时间。返回指定的现有键的数量
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### TTL
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
TTL key
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET mykey "Hello"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> EXPIRE mykey 10
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> TTL mykey
|
|
|
|
|
(integer) 10
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 09:06:44 +08:00
|
|
|
|
获得一个键的值的时间(有点绕口,但意思是对的)
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### TYPE
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
TYPE key
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET key1 "value"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> LPUSH key2 "value"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key3 "value"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> TYPE key1
|
|
|
|
|
"string"
|
|
|
|
|
redis> TYPE key2
|
|
|
|
|
"list"
|
|
|
|
|
redis> TYPE key3
|
|
|
|
|
"set"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
确定存储在键中的类型
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### UNLINK
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
UNLINK key [key ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET key1 "Hello"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> SET key2 "World"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> UNLINK key1 key2 key3
|
|
|
|
|
(integer) 2
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
在另一个线程中异步删除一个键。否则它就像 DEL,但不是阻塞的
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
Redis 连接相关的命令
|
|
|
|
|
------
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
### 一些引用(可能有帮助)
|
2022-12-01 10:18:10 +08:00
|
|
|
|
<!--rehype:wrap-class=row-span-2-->
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
:- | --
|
|
|
|
|
:- | --
|
|
|
|
|
[AUTH](https://redis.io/commands/auth) | 向服务器进行身份验证
|
|
|
|
|
[CLIENT CACHING](https://redis.io/commands/client-caching) | 指示服务器在下一个请求中是否跟踪键
|
|
|
|
|
[CLIENT KILL](https://redis.io/commands/client-kill) | 终止客户端的连接
|
|
|
|
|
[CLIENT LIST](https://redis.io/commands/client-list) | 获取客户端连接列表
|
|
|
|
|
[CLIENT GETNAME](https://redis.io/commands/client-getname) | 获取当前连接名称
|
|
|
|
|
[CLIENT GETREDIR](https://redis.io/commands/client-getredir) | 获取跟踪通知重定向客户端 ID(如果有)
|
|
|
|
|
[CLIENT PAUSE](https://redis.io/commands/client-pause) | 停止处理来自客户端的命令一段时间
|
|
|
|
|
[CLIENT REPLY](https://redis.io/commands/client-reply) | 指示服务器是否回复命令
|
|
|
|
|
[CLIENT SETNAME](https://redis.io/commands/client-setname) | 设置当前连接名称
|
|
|
|
|
[CLIENT TRACKING](https://redis.io/commands/client-tracking) | 启用或禁用服务器辅助客户端缓存支持
|
|
|
|
|
[CLIENT UNBLOCK](https://redis.io/commands/client-unblock) | 取消阻止来自不同连接的阻塞命令中阻塞的客户端
|
|
|
|
|
[HELLO](https://redis.io/commands/hello) | 切换Redis协议
|
|
|
|
|
[QUIT](https://redis.io/commands/quit) | 关闭连接
|
|
|
|
|
[RESET](https://redis.io/commands/reset) | 重置连接
|
|
|
|
|
[SELECT](https://redis.io/commands/select) | 更改为当前连接选择的数据库
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
### CLIENT ID
|
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
CLIENT ID
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> CLIENT ID
|
|
|
|
|
ERR Unknown or disabled command 'CLIENT'
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
返回当前连接的客户端 ID
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
### CLIENT INFO
|
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
CLIENT INFO
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> CLIENT INFO
|
|
|
|
|
"id=55542 addr=127.0.0.1:58710 laddr=127.0.0.1:6379 fd=8 name= age=114920 idle=0 flags=N db=0 sub=0 psub=0 multi=-1 qbuf=26 qbuf-free=40928 argv-mem=10 obl=0 oll=0 omem=0 tot-mem=61466 events=r cmd=client user=default redir=-1\n"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
返回有关当前客户端连接的信息。
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ECHO
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
ECHO message
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ECHO "Hello World!"
|
|
|
|
|
"Hello World!"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
回显给定的字符串
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### PING
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
PING [message]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> PING
|
|
|
|
|
"PONG"
|
|
|
|
|
redis> PING "hello world"
|
|
|
|
|
"hello world"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
ping 服务器
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
Redis 字符串类型设置
|
2022-12-01 09:06:44 +08:00
|
|
|
|
------------
|
|
|
|
|
|
|
|
|
|
### APPEND
|
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
APPEND key value
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> EXISTS mykey
|
|
|
|
|
(integer) 0
|
|
|
|
|
redis> APPEND mykey "Hello"
|
|
|
|
|
(integer) 5
|
|
|
|
|
redis> APPEND mykey " World"
|
|
|
|
|
(integer) 11
|
|
|
|
|
redis> GET mykey
|
|
|
|
|
"Hello World"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
将值附加到键,可以理解为追加作用
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### BITCOUNT
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
BITCOUNT key [start end]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET mykey "foobar"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> BITCOUNT mykey
|
|
|
|
|
(integer) 26
|
|
|
|
|
redis> BITCOUNT mykey 0 0
|
|
|
|
|
(integer) 4
|
|
|
|
|
redis> BITCOUNT mykey 1 1
|
|
|
|
|
(integer) 6
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
计算字符串中的集合位
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### BITFIELD
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
BITFIELD key [GET type offset] [SET type offset value]
|
|
|
|
|
[INCRBY type offset increment] [OVERFLOW WRAP|SAT|FAIL]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> BITFIELD mykey INCRBY i5 100 1 GET u4 0
|
|
|
|
|
1) (integer) 1
|
|
|
|
|
2) (integer) 0
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
对字符串执行任意位域整数运算
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### BITOP
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
BITOP operation destkey key [key ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET key1 "foobar"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> SET key2 "abcdef"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> BITOP AND dest key1 key2
|
|
|
|
|
(integer) 6
|
|
|
|
|
redis> GET dest
|
|
|
|
|
"`bc`ab"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
在字符串之间执行按位运算
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### BITPOS
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
BITPOS key bit [start] [end]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET mykey "\xff\xf0\x00"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> BITPOS mykey 0
|
|
|
|
|
(integer) 12
|
|
|
|
|
redis> SET mykey "\x00\xff\xf0"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> BITPOS mykey 1 0
|
|
|
|
|
(integer) 8
|
|
|
|
|
redis> BITPOS mykey 1 2
|
|
|
|
|
(integer) 16
|
|
|
|
|
redis> set mykey "\x00\x00\x00"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> BITPOS mykey 1
|
|
|
|
|
(integer) -1
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
查找字符串中设置或清除的第一位
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### DECR
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
DECR key
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET mykey "10"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> DECR mykey
|
|
|
|
|
(integer) 9
|
|
|
|
|
redis> SET mykey "234293482390480948029348230948"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> DECR mykey
|
|
|
|
|
ERR ERR value is not an integer or out of range
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
将键的整数值减一
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### DECRBY
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
DECRBY key decrement
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET mykey "10"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> DECRBY mykey 3
|
|
|
|
|
(integer) 7
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
将键的整数值减去给定的数字
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### GET
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
GET key
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> GET nonexisting
|
|
|
|
|
(nil)
|
|
|
|
|
redis> SET mykey "Hello"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> GET mykey
|
|
|
|
|
"Hello"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
获取key的值
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### GETBIT
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
GETBIT key offset
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SETBIT mykey 7 1
|
|
|
|
|
(integer) 0
|
|
|
|
|
redis> GETBIT mykey 0
|
|
|
|
|
(integer) 0
|
|
|
|
|
redis> GETBIT mykey 7
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> GETBIT mykey 100
|
|
|
|
|
(integer) 0
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
返回存储在 `key` 处的字符串值中 `offset` 处的位值
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### GETRANGE
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
GETRANGE key start end
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET mykey "This is a string"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> GETRANGE mykey 0 3
|
|
|
|
|
"This"
|
|
|
|
|
redis> GETRANGE mykey -3 -1
|
|
|
|
|
"ing"
|
|
|
|
|
redis> GETRANGE mykey 0 -1
|
|
|
|
|
"This is a string"
|
|
|
|
|
redis> GETRANGE mykey 10 100
|
|
|
|
|
"string"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
获取存储在键中的字符串的子字符串
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### GETSET
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
GETSET key value
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> INCR mycounter
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> GETSET mycounter "0"
|
|
|
|
|
"1"
|
|
|
|
|
redis> GET mycounter
|
|
|
|
|
"0"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
设置键的字符串值并返回其旧值
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### INCR
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
INCR key
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET mykey "10"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> INCR mykey
|
|
|
|
|
(integer) 11
|
|
|
|
|
redis> GET mykey
|
|
|
|
|
"11"
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 09:06:44 +08:00
|
|
|
|
将键的整数值加一
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### MSETNX
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
MSETNX key value [key value ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> MSETNX key1 "Hello" key2 "there"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> MSETNX key2 "new" key3 "world"
|
|
|
|
|
(integer) 0
|
|
|
|
|
redis> MGET key1 key2 key3
|
|
|
|
|
1) "Hello"
|
|
|
|
|
2) "there"
|
|
|
|
|
3) (nil)
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 09:06:44 +08:00
|
|
|
|
仅当不存在任何键时,将多个键设置为多个值
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### INCRBYFLOAT
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
INCRBYFLOAT key increment
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET mykey 10.50
|
|
|
|
|
"OK"
|
|
|
|
|
redis> INCRBYFLOAT mykey 0.1
|
|
|
|
|
"10.6"
|
|
|
|
|
redis> INCRBYFLOAT mykey -5
|
|
|
|
|
"5.6"
|
|
|
|
|
redis> SET mykey 5.0e3
|
|
|
|
|
"OK"
|
|
|
|
|
redis> INCRBYFLOAT mykey 2.0e2
|
|
|
|
|
"5200"
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 09:06:44 +08:00
|
|
|
|
将键的浮点值增加给定的数量
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### MGET
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
MGET key [key ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET key1 "Hello"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> SET key2 "World"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> MGET key1 key2 nonexisting
|
|
|
|
|
1) "Hello"
|
|
|
|
|
2) "World"
|
|
|
|
|
3) (nil)
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
获取所有给定键的值
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### MSET
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
MSET key value [key value ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> MSET key1 "Hello" key2 "World"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> GET key1
|
|
|
|
|
"Hello"
|
|
|
|
|
redis> GET key2
|
|
|
|
|
"World"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
将多个键设置为多个值
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### INCRBY
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
INCRBY key increment
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET mykey "10"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> INCRBY mykey 5
|
|
|
|
|
(integer) 15
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
将键的整数值增加给定的数量
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### PSETEX
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
PSETEX key milliseconds value
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> PSETEX mykey 1000 "Hello"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> PTTL mykey
|
|
|
|
|
(integer) 1000
|
|
|
|
|
redis> GET mykey
|
|
|
|
|
"Hello"
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
设置键的值和过期时间(以毫秒为单位)
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### SET
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
SET key value [EX seconds|PX milliseconds|KEEPTTL] [NX|XX]
|
|
|
|
|
[GET]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET mykey "Hello"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> GET mykey
|
|
|
|
|
"Hello"
|
|
|
|
|
redis> SET anotherkey "will expire in a minute" EX 60
|
|
|
|
|
"OK"
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 09:06:44 +08:00
|
|
|
|
设置键的字符串值,可以理解为创建、设置、重设的作用
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### SETBIT
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
SETBIT key offset value
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SETBIT mykey 7 1
|
|
|
|
|
(integer) 0
|
|
|
|
|
redis> SETBIT mykey 7 0
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> GET mykey
|
|
|
|
|
"\u0000"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
设置或清除存储在键中的字符串值中偏移量处的位
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### SETEX
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
SETEX key seconds value
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SETEX mykey 10 "Hello"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> TTL mykey
|
|
|
|
|
(integer) 10
|
|
|
|
|
redis> GET mykey
|
|
|
|
|
"Hello"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
设置密钥的值和过期时间
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### SETNX
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
SETNX key value
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SETNX mykey "Hello"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SETNX mykey "World"
|
|
|
|
|
(integer) 0
|
|
|
|
|
redis> GET mykey
|
|
|
|
|
"Hello"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
设置键的值,仅当键不存在时
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### SETRANGE
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
SETRANGE key offset value
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET key1 "Hello World"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> SETRANGE key1 6 "Redis"
|
|
|
|
|
(integer) 11
|
|
|
|
|
redis> GET key1
|
|
|
|
|
"Hello Redis"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
覆盖从指定偏移量开始的键处的字符串的一部分
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### STRLEN
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
STRLEN key
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SET mykey "Hello world"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> STRLEN mykey
|
|
|
|
|
(integer) 11
|
|
|
|
|
redis> STRLEN nonexisting
|
|
|
|
|
(integer) 0
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
获取存储在键中的值的长度
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### STRALGO
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
STRALGO LCS algo-specific-argument [algo-specific-argument
|
|
|
|
|
...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> STRALGO LCS KEYS key1 key2 IDX
|
|
|
|
|
1) "matches"
|
|
|
|
|
2) 1) 1) 1) (integer) 4
|
|
|
|
|
2) (integer) 7
|
|
|
|
|
2) 1) (integer) 5
|
|
|
|
|
2) (integer) 8
|
|
|
|
|
2) 1) 1) (integer) 2
|
|
|
|
|
2) (integer) 3
|
|
|
|
|
2) 1) (integer) 0
|
|
|
|
|
2) (integer) 1
|
|
|
|
|
3) "len"
|
|
|
|
|
4) (integer) 6
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
针对字符串运行算法(目前为 LCS)
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
Redis 集合类型设置
|
2022-12-01 09:06:44 +08:00
|
|
|
|
------------
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### SADD
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
SADD key member [member ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SADD myset "Hello"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD myset "World"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD myset "World"
|
|
|
|
|
(integer) 0
|
|
|
|
|
redis> SMEMBERS myset
|
|
|
|
|
1) "Hello"
|
|
|
|
|
2) "World"
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 09:06:44 +08:00
|
|
|
|
将一个或多个成员添加到集合
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### SCARD
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
SCARD key
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SADD myset "Hello"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD myset "World"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SCARD myset
|
|
|
|
|
(integer) 2
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 09:06:44 +08:00
|
|
|
|
获取集合中的成员数
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### SDIFF
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
SDIFF key [key ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SADD key1 "a"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key1 "b"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key1 "c"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key2 "c"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key2 "d"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key2 "e"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SDIFF key1 key2
|
|
|
|
|
1) "a"
|
|
|
|
|
2) "b"
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 09:06:44 +08:00
|
|
|
|
减去多组
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### SDIFFSTORE
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
SDIFFSTORE destination key [key ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SADD key1 "a"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key1 "b"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key1 "c"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key2 "c"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key2 "d"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key2 "e"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SDIFFSTORE key key1 key2
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> SMEMBERS key
|
|
|
|
|
1) "a"
|
|
|
|
|
2) "b"
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 09:06:44 +08:00
|
|
|
|
减去多个集合并将结果集合存储在一个键中
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### SINTER
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
SINTER key [key ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SADD key1 "a"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key1 "b"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key1 "c"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key2 "c"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key2 "d"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key2 "e"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SINTER key1 key2
|
|
|
|
|
1) "c"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
交叉多个集合
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### SINTERSTORE
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
SINTERSTORE destination key [key ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SADD key1 "a"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key1 "b"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key1 "c"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key2 "c"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key2 "d"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key2 "e"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SINTERSTORE key key1 key2
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SMEMBERS key
|
|
|
|
|
1) "c"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
将多个集合相交并将结果集合存储在一个键中
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### SISMEMBER
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
SISMEMBER key member
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SADD myset "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SISMEMBER myset "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SISMEMBER myset "two"
|
|
|
|
|
(integer) 0
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
确定给定值是否是集合的成员
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### SMISMEMBER
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
SMISMEMBER key member [member ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SADD myset "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD myset "one"
|
|
|
|
|
(integer) 0
|
|
|
|
|
redis> SMISMEMBER myset "one" "notamember"
|
|
|
|
|
1) (integer) 1
|
|
|
|
|
2) (integer) 0
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
返回与集合的给定元素关联的成员资格
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### SMEMBERS
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
SMEMBERS key
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SADD myset "Hello"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD myset "World"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SMEMBERS myset
|
|
|
|
|
1) "Hello"
|
|
|
|
|
2) "World"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
获取集合中的所有成员
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### SMOVE
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
SMOVE source destination member
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SADD myset "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD myset "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD myotherset "three"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SMOVE myset myotherset "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SMEMBERS myset
|
|
|
|
|
1) "one"
|
|
|
|
|
redis> SMEMBERS myotherset
|
|
|
|
|
1) "two"
|
|
|
|
|
2) "three"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
将成员从一组移到另一组
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### SPOP
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
SPOP key [count]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SADD myset "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD myset "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD myset "three"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SPOP myset
|
|
|
|
|
"two"
|
|
|
|
|
redis> SMEMBERS myset
|
|
|
|
|
1) "one"
|
|
|
|
|
2) "three"
|
|
|
|
|
redis> SADD myset "four"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD myset "five"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SPOP myset 3
|
|
|
|
|
1) "four"
|
|
|
|
|
2) "five"
|
|
|
|
|
3) "three"
|
|
|
|
|
redis> SMEMBERS myset
|
|
|
|
|
1) "one"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
从集合中删除并返回一个或多个随机成员
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### SRANDMEMBER
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
SRANDMEMBER key [count]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SADD myset one two three
|
|
|
|
|
(integer) 3
|
|
|
|
|
redis> SRANDMEMBER myset
|
|
|
|
|
"three"
|
|
|
|
|
redis> SRANDMEMBER myset 2
|
|
|
|
|
1) "two"
|
|
|
|
|
2) "three"
|
|
|
|
|
redis> SRANDMEMBER myset -5
|
|
|
|
|
1) "one"
|
|
|
|
|
2) "two"
|
|
|
|
|
3) "three"
|
|
|
|
|
4) "three"
|
|
|
|
|
5) "one"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
从一组中获取一个或多个随机成员
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### SREM
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
SREM key member [member ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SADD myset "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD myset "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD myset "three"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SREM myset "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SREM myset "four"
|
|
|
|
|
(integer) 0
|
|
|
|
|
redis> SMEMBERS myset
|
|
|
|
|
1) "two"
|
|
|
|
|
2) "three"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
从集合中删除一个或多个成员
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### SUNION
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
SUNION key [key ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SADD key1 "a"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key1 "b"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key1 "c"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key2 "c"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key2 "d"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key2 "e"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SUNION key1 key2
|
|
|
|
|
1) "a"
|
|
|
|
|
2) "c"
|
|
|
|
|
3) "e"
|
|
|
|
|
4) "b"
|
|
|
|
|
5) "d"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
添加多组
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### SUNIONSTORE
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
SUNIONSTORE destination key [key ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> SADD key1 "a"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key1 "b"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key1 "c"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key2 "c"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key2 "d"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SADD key2 "e"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> SUNIONSTORE key key1 key2
|
|
|
|
|
(integer) 5
|
|
|
|
|
redis> SMEMBERS key
|
|
|
|
|
1) "a"
|
|
|
|
|
2) "c"
|
|
|
|
|
3) "e"
|
|
|
|
|
4) "b"
|
|
|
|
|
5) "d"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
添加多个集合并将结果集合存储在一个键中
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
Redis 列表类型设置
|
2022-12-01 09:06:44 +08:00
|
|
|
|
------------
|
|
|
|
|
|
|
|
|
|
### 一些引用(可能有帮助)
|
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
:- | --
|
|
|
|
|
:- | --
|
|
|
|
|
[BRPOPLPUSH](https://redis.io/commands/brpoplpush) | 从列表中弹出一个元素,将其推入另一个列表并返回;或阻塞直到有一个可用
|
|
|
|
|
[BLMOVE](https://redis.io/commands/blmove) | 从列表中弹出一个元素,将其推入另一个列表并返回;或阻塞直到有一个可用
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
### BLPOP
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 09:06:44 +08:00
|
|
|
|
```
|
|
|
|
|
BLPOP key [key ...] timeout
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> DEL list1 list2
|
|
|
|
|
(integer) 0
|
|
|
|
|
redis> RPUSH list1 a b c
|
|
|
|
|
(integer) 3
|
|
|
|
|
redis> BLPOP list1 list2 0
|
|
|
|
|
1) "list1"
|
|
|
|
|
2) "a"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
删除并获取列表中的第一个元素,或者阻塞直到有一个元素可用
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
### BRPOP
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 09:06:44 +08:00
|
|
|
|
```
|
|
|
|
|
BRPOP key [key ...] timeout
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> DEL list1 list2
|
|
|
|
|
(integer) 0
|
|
|
|
|
redis> RPUSH list1 a b c
|
|
|
|
|
(integer) 3
|
|
|
|
|
redis> BRPOP list1 list2 0
|
|
|
|
|
1) "list1"
|
|
|
|
|
2) "c"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
删除并获取列表中的最后一个元素,或者阻塞直到有一个可用
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### LINDEX
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
LINDEX key index
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> LPUSH mylist "World"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> LPUSH mylist "Hello"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> LINDEX mylist 0
|
|
|
|
|
"Hello"
|
|
|
|
|
redis> LINDEX mylist -1
|
|
|
|
|
"World"
|
|
|
|
|
redis> LINDEX mylist 3
|
|
|
|
|
(nil)
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
通过索引从列表中获取元素
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### LINSERT
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
LINSERT key BEFORE|AFTER pivot element
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> RPUSH mylist "Hello"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> RPUSH mylist "World"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> LINSERT mylist BEFORE "World" "There"
|
|
|
|
|
(integer) 3
|
|
|
|
|
redis> LRANGE mylist 0 -1
|
|
|
|
|
1) "Hello"
|
|
|
|
|
2) "There"
|
|
|
|
|
3) "World"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
在列表中的另一个元素之前或之后插入一个元素
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### LLEN
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
LLEN key
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> LPUSH mylist "World"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> LPUSH mylist "Hello"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> LLEN mylist
|
|
|
|
|
(integer) 2
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
获取列表的长度
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### LPOP
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
LPOP key [count]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> RPUSH mylist "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> RPUSH mylist "two"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> RPUSH mylist "three"
|
|
|
|
|
(integer) 3
|
|
|
|
|
redis> LPOP mylist
|
|
|
|
|
"one"
|
|
|
|
|
redis> LRANGE mylist 0 -1
|
|
|
|
|
1) "two"
|
|
|
|
|
2) "three"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
删除并获取列表中的第一个元素
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### LPOS
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
LPOS key element [RANK rank] [COUNT num-matches] [MAXLEN len]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> RPUSH mylist a b c d 1 2 3 4 3 3 3
|
|
|
|
|
(integer) 11
|
|
|
|
|
redis> LPOS mylist 3
|
|
|
|
|
(integer) 6
|
|
|
|
|
redis> LPOS mylist 3 COUNT 0 RANK 2
|
|
|
|
|
1) (integer) 8
|
|
|
|
|
2) (integer) 9
|
|
|
|
|
3) (integer) 10
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 09:06:44 +08:00
|
|
|
|
返回列表中匹配元素的索引
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### LPUSH
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
LPUSH key element [element ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> LPUSH mylist "world"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> LPUSH mylist "hello"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> LRANGE mylist 0 -1
|
|
|
|
|
1) "hello"
|
|
|
|
|
2) "world"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
将一个或多个元素添加到列表中
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### LPUSHX
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
LPUSHX key element [element ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> LPUSH mylist "World"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> LPUSHX mylist "Hello"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> LPUSHX myotherlist "Hello"
|
|
|
|
|
(integer) 0
|
|
|
|
|
redis> LRANGE mylist 0 -1
|
|
|
|
|
1) "Hello"
|
|
|
|
|
2) "World"
|
|
|
|
|
redis> LRANGE myotherlist 0 -1
|
|
|
|
|
(empty list or set)
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
仅当列表存在时才将元素添加到列表中
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### LRANGE
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
LRANGE key start stop
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> RPUSH mylist "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> RPUSH mylist "two"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> RPUSH mylist "three"
|
|
|
|
|
(integer) 3
|
|
|
|
|
redis> LRANGE mylist 0 0
|
|
|
|
|
1) "one"
|
|
|
|
|
redis> LRANGE mylist -3 2
|
|
|
|
|
1) "one"
|
|
|
|
|
2) "two"
|
|
|
|
|
3) "three"
|
|
|
|
|
redis> LRANGE mylist -100 100
|
|
|
|
|
1) "one"
|
|
|
|
|
2) "two"
|
|
|
|
|
3) "three"
|
|
|
|
|
redis> LRANGE mylist 5 10
|
|
|
|
|
(empty list or set)
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
从列表中获取一系列元素
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### LREM
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
LREM key count element
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> RPUSH mylist "hello"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> RPUSH mylist "hello"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> RPUSH mylist "foo"
|
|
|
|
|
(integer) 3
|
|
|
|
|
redis> RPUSH mylist "hello"
|
|
|
|
|
(integer) 4
|
|
|
|
|
redis> LREM mylist -2 "hello"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> LRANGE mylist 0 -1
|
|
|
|
|
1) "hello"
|
|
|
|
|
2) "foo"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
从列表中删除元素
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### LSET
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
LSET key index element
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> RPUSH mylist "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> RPUSH mylist "two"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> RPUSH mylist "three"
|
|
|
|
|
(integer) 3
|
|
|
|
|
redis> LSET mylist 0 "four"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> LSET mylist -2 "five"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> LRANGE mylist 0 -1
|
|
|
|
|
1) "four"
|
|
|
|
|
2) "five"
|
|
|
|
|
3) "three"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
通过索引设置列表中元素的值
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### LTRIM
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
LTRIM key start stop
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> RPUSH mylist "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> RPUSH mylist "two"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> RPUSH mylist "three"
|
|
|
|
|
(integer) 3
|
|
|
|
|
redis> LTRIM mylist 1 -1
|
|
|
|
|
"OK"
|
|
|
|
|
redis> LRANGE mylist 0 -1
|
|
|
|
|
1) "two"
|
|
|
|
|
2) "three"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
将列表修剪到指定范围
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### RPOP
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
RPOP key [count]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> RPUSH mylist "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> RPUSH mylist "two"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> RPUSH mylist "three"
|
|
|
|
|
(integer) 3
|
|
|
|
|
redis> RPOP mylist
|
|
|
|
|
"three"
|
|
|
|
|
redis> LRANGE mylist 0 -1
|
|
|
|
|
1) "one"
|
|
|
|
|
2) "two"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
删除并获取列表中的最后一个元素
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### RPOPLPUSH
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
RPOPLPUSH source destination
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> RPUSH mylist "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> RPUSH mylist "two"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> RPUSH mylist "three"
|
|
|
|
|
(integer) 3
|
|
|
|
|
redis> RPOPLPUSH mylist myotherlist
|
|
|
|
|
"three"
|
|
|
|
|
redis> LRANGE mylist 0 -1
|
|
|
|
|
1) "one"
|
|
|
|
|
2) "two"
|
|
|
|
|
redis> LRANGE myotherlist 0 -1
|
|
|
|
|
1) "three"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
删除列表中的最后一个元素,将其添加到另一个列表中并返回
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### LMOVE
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
LMOVE source destination LEFT|RIGHT LEFT|RIGHT
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> RPUSH mylist "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> RPUSH mylist "two"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> RPUSH mylist "three"
|
|
|
|
|
(integer) 3
|
|
|
|
|
redis> LMOVE mylist myotherlist RIGHT LEFT
|
|
|
|
|
"three"
|
|
|
|
|
redis> LMOVE mylist myotherlist LEFT RIGHT
|
|
|
|
|
"one"
|
|
|
|
|
redis> LRANGE mylist 0 -1
|
|
|
|
|
1) "two"
|
|
|
|
|
redis> LRANGE myotherlist 0 -1
|
|
|
|
|
1) "three"
|
|
|
|
|
2) "one"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
从列表中弹出一个元素,将其推入另一个列表并返回
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### RPUSH
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
RPUSH key element [element ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> RPUSH mylist "hello"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> RPUSH mylist "world"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> LRANGE mylist 0 -1
|
|
|
|
|
1) "hello"
|
|
|
|
|
2) "world"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
将一个或多个元素附加到列表
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### RPUSHX
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
RPUSHX key element [element ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> RPUSH mylist "Hello"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> RPUSHX mylist "World"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> RPUSHX myotherlist "World"
|
|
|
|
|
(integer) 0
|
|
|
|
|
redis> LRANGE mylist 0 -1
|
|
|
|
|
1) "Hello"
|
|
|
|
|
2) "World"
|
|
|
|
|
redis> LRANGE myotherlist 0 -1
|
|
|
|
|
(empty list or set)
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
仅当列表存在时才将元素附加到列表
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
Redis 哈希类型设置
|
2022-12-01 09:06:44 +08:00
|
|
|
|
------------
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### HDEL
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
HDEL key field [field ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> HSET myhash field1 "foo"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> HDEL myhash field1
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> HDEL myhash field2
|
|
|
|
|
(integer) 0
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
删除一个或多个哈希字段
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### HEXISTS
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
HEXISTS key field
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> HSET myhash field1 "foo"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> HEXISTS myhash field1
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> HEXISTS myhash field2
|
|
|
|
|
(integer) 0
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
判断哈希字段是否存在
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### HGET
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
HGET key field
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> HSET myhash field1 "foo"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> HGET myhash field1
|
|
|
|
|
"foo"
|
|
|
|
|
redis> HGET myhash field2
|
|
|
|
|
(nil)
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
获取哈希字段的值
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### HGETALL
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
HGETALL key
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> HSET myhash field1 "Hello"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> HSET myhash field2 "World"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> HGETALL myhash
|
|
|
|
|
1) "field1"
|
|
|
|
|
2) "Hello"
|
|
|
|
|
3) "field2"
|
|
|
|
|
4) "World"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
获取哈希中的所有字段和值
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### HINCRBY
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
HINCRBY key field increment
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> HSET myhash field 5
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> HINCRBY myhash field 1
|
|
|
|
|
(integer) 6
|
|
|
|
|
redis> HINCRBY myhash field -1
|
|
|
|
|
(integer) 5
|
|
|
|
|
redis> HINCRBY myhash field -10
|
|
|
|
|
(integer) -5
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
将哈希字段的整数值增加给定的数字
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### HINCRBYFLOAT
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
HINCRBYFLOAT key field increment
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> HSET mykey field 10.50
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> HINCRBYFLOAT mykey field 0.1
|
|
|
|
|
"10.6"
|
|
|
|
|
redis> HINCRBYFLOAT mykey field -5
|
|
|
|
|
"5.6"
|
|
|
|
|
redis> HSET mykey field 5.0e3
|
|
|
|
|
(integer) 0
|
|
|
|
|
redis> HINCRBYFLOAT mykey field 2.0e2
|
|
|
|
|
"5200"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
将哈希字段的浮点值增加给定的数量
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### HKEYS
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
HKEYS key
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> HSET myhash field1 "Hello"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> HSET myhash field2 "World"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> HKEYS myhash
|
|
|
|
|
1) "field1"
|
|
|
|
|
2) "field2"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
获取哈希中的所有字段
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### HLEN
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
HLEN key
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> HSET myhash field1 "Hello"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> HSET myhash field2 "World"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> HLEN myhash
|
|
|
|
|
(integer) 2
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
获取哈希中的字段数
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### HMGET
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
HMGET key field [field ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> HSET myhash field1 "Hello"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> HSET myhash field2 "World"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> HMGET myhash field1 field2 nofield
|
|
|
|
|
1) "Hello"
|
|
|
|
|
2) "World"
|
|
|
|
|
3) (nil)
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
获取所有给定哈希字段的值
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### HMSET
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
HMSET key field value [field value ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> HMSET myhash field1 "Hello" field2 "World"
|
|
|
|
|
"OK"
|
|
|
|
|
redis> HGET myhash field1
|
|
|
|
|
"Hello"
|
|
|
|
|
redis> HGET myhash field2
|
|
|
|
|
"World"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
将多个哈希字段设置为多个值
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### HSET
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
HSET key field value [field value ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> HSET myhash field1 "Hello"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> HGET myhash field1
|
|
|
|
|
"Hello"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
设置哈希字段的字符串值
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### HSETNX
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
HSETNX key field value
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> HSETNX myhash field "Hello"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> HSETNX myhash field "World"
|
|
|
|
|
(integer) 0
|
|
|
|
|
redis> HGET myhash field
|
|
|
|
|
"Hello"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
设置哈希字段的值,仅当该字段不存在时
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### HSTRLEN
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
HSTRLEN key field
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> HMSET myhash f1 HelloWorld f2 99 f3 -256
|
|
|
|
|
"OK"
|
|
|
|
|
redis> HSTRLEN myhash f1
|
|
|
|
|
(integer) 10
|
|
|
|
|
redis> HSTRLEN myhash f2
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> HSTRLEN myhash f3
|
|
|
|
|
(integer) 4
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
获取哈希字段值的长度
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### HVALS
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
HVALS key
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> HSET myhash field1 "Hello"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> HSET myhash field2 "World"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> HVALS myhash
|
|
|
|
|
1) "Hello"
|
|
|
|
|
2) "World"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
获取哈希中的所有值
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
Redis 排序集类型设置
|
2022-12-01 09:06:44 +08:00
|
|
|
|
------------
|
|
|
|
|
|
|
|
|
|
### BZPOPMIN
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
BZPOPMIN key [key ...] timeout
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> DEL zset1 zset2
|
|
|
|
|
(integer) 0
|
|
|
|
|
redis> ZADD zset1 0 a 1 b 2 c
|
|
|
|
|
(integer) 3
|
|
|
|
|
redis> BZPOPMIN zset1 zset2 0
|
|
|
|
|
1) "zset1"
|
|
|
|
|
2) "a"
|
|
|
|
|
3) "0"
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 09:06:44 +08:00
|
|
|
|
从一个或多个排序集合中删除并返回得分最低的成员,或者阻塞直到一个可用
|
|
|
|
|
|
|
|
|
|
### BZPOPMAX
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
BZPOPMAX key [key ...] timeout
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> DEL zset1 zset2
|
|
|
|
|
(integer) 0
|
|
|
|
|
redis> ZADD zset1 0 a 1 b 2 c
|
|
|
|
|
(integer) 3
|
|
|
|
|
redis> BZPOPMAX zset1 zset2 0
|
|
|
|
|
1) "zset1"
|
|
|
|
|
2) "c"
|
|
|
|
|
3) "2"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
从一个或多个排序集合中删除并返回得分最高的成员,或者阻塞直到一个可用
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
### ZADD
|
|
|
|
|
<!--rehype:wrap-class=row-span-2-->
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZADD key [NX|XX] [GT|LT] [CH] [INCR] score member [score
|
|
|
|
|
member ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD myzset 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 1 "uno"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 2 "two" 3 "three"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> ZRANGE myzset 0 -1 WITHSCORES
|
|
|
|
|
1) "one"
|
|
|
|
|
2) "1"
|
|
|
|
|
3) "uno"
|
|
|
|
|
4) "1"
|
|
|
|
|
5) "two"
|
|
|
|
|
6) "2"
|
|
|
|
|
7) "three"
|
|
|
|
|
8) "3"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
将一个或多个成员添加到有序集合中,或者更新其分数(如果它已经存在)
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZCARD
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZCARD key
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD myzset 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZCARD myzset
|
|
|
|
|
(integer) 2
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
获取有序集合中的成员数
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZSCORE
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZSCORE key member
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD myzset 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZSCORE myzset "one"
|
|
|
|
|
"1"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
获取与排序集中给定成员关联的分数
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZCOUNT
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZCOUNT key min max
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD myzset 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 3 "three"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZCOUNT myzset -inf +inf
|
|
|
|
|
(integer) 3
|
|
|
|
|
redis> ZCOUNT myzset (1 3
|
|
|
|
|
(integer) 2
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
计算得分在给定值内的排序集中的成员
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZDIFF
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZDIFF numkeys key [key ...] [WITHSCORES]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD zset1 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD zset1 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD zset1 3 "three"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD zset2 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD zset2 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZDIFF 2 zset1 zset2
|
|
|
|
|
1) "three"
|
|
|
|
|
redis> ZDIFF 2 zset1 zset2 WITHSCORES
|
|
|
|
|
1) "three"
|
|
|
|
|
2) "3"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
减去多个排序集
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZDIFFSTORE
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZDIFFSTORE destination numkeys key [key ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD zset1 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD zset1 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD zset1 3 "three"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD zset2 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD zset2 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZDIFFSTORE out 2 zset1 zset2
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZRANGE out 0 -1 WITHSCORES
|
|
|
|
|
1) "three"
|
|
|
|
|
2) "3"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
减去多个排序集并将生成的排序集存储在新键中
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZINCRBY
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZINCRBY key increment member
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD myzset 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZINCRBY myzset 2 "one"
|
|
|
|
|
"3"
|
|
|
|
|
redis> ZRANGE myzset 0 -1 WITHSCORES
|
|
|
|
|
1) "two"
|
|
|
|
|
2) "2"
|
|
|
|
|
3) "one"
|
|
|
|
|
4) "3"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
增加排序集中成员的分数
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZINTER
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZINTER numkeys key [key ...] [WEIGHTS weight [weight ...]]
|
|
|
|
|
[AGGREGATE SUM|MIN|MAX] [WITHSCORES]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD zset1 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD zset1 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD zset2 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD zset2 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD zset2 3 "three"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZINTER 2 zset1 zset2
|
|
|
|
|
1) "one"
|
|
|
|
|
2) "two"
|
|
|
|
|
redis> ZINTER 2 zset1 zset2 WITHSCORES
|
|
|
|
|
1) "one"
|
|
|
|
|
2) "2"
|
|
|
|
|
3) "two"
|
|
|
|
|
4) "4"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
与多个排序集相交
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZINTERSTORE
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZINTERSTORE destination numkeys key [key ...] [WEIGHTS weight
|
|
|
|
|
[weight ...]] [AGGREGATE SUM|MIN|MAX]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD zset1 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD zset1 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD zset2 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD zset2 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD zset2 3 "three"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZINTERSTORE out 2 zset1 zset2 WEIGHTS 2 3
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> ZRANGE out 0 -1 WITHSCORES
|
|
|
|
|
1) "one"
|
|
|
|
|
2) "5"
|
|
|
|
|
3) "two"
|
|
|
|
|
4) "10"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
将多个排序集相交并将生成的排序集存储在新键中
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZLEXCOUNT
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZLEXCOUNT key min max
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD myzset 0 a 0 b 0 c 0 d 0 e
|
|
|
|
|
(integer) 5
|
|
|
|
|
redis> ZADD myzset 0 f 0 g
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> ZLEXCOUNT myzset - +
|
|
|
|
|
(integer) 7
|
|
|
|
|
redis> ZLEXCOUNT myzset [b [f
|
|
|
|
|
(integer) 5
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
计算给定词典范围之间的有序集合中的成员数
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZPOPMAX
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZPOPMAX key [count]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD myzset 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 3 "three"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZPOPMAX myzset
|
|
|
|
|
1) "three"
|
|
|
|
|
2) "3"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
删除并返回排序集中得分最高的成员
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZPOPMIN
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZPOPMIN key [count]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD myzset 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 3 "three"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZPOPMIN myzset
|
|
|
|
|
1) "one"
|
|
|
|
|
2) "1"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
删除并返回排序集中得分最低的成员
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZRANGE
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZRANGE key start stop [WITHSCORES]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD myzset 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 3 "three"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZRANGE myzset 0 -1
|
|
|
|
|
1) "one"
|
|
|
|
|
2) "two"
|
|
|
|
|
3) "three"
|
|
|
|
|
redis> ZRANGE myzset 2 3
|
|
|
|
|
1) "three"
|
|
|
|
|
redis> ZRANGE myzset -2 -1
|
|
|
|
|
1) "two"
|
|
|
|
|
2) "three"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
按索引返回排序集中的一系列成员
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZRANGEBYLEX
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZRANGEBYLEX key min max [LIMIT offset count]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD myzset 0 a 0 b 0 c 0 d 0 e 0 f 0 g
|
|
|
|
|
(integer) 7
|
|
|
|
|
redis> ZRANGEBYLEX myzset - [c
|
|
|
|
|
1) "a"
|
|
|
|
|
2) "b"
|
|
|
|
|
3) "c"
|
|
|
|
|
redis> ZRANGEBYLEX myzset - (c
|
|
|
|
|
1) "a"
|
|
|
|
|
2) "b"
|
|
|
|
|
redis> ZRANGEBYLEX myzset [aaa (g
|
|
|
|
|
1) "b"
|
|
|
|
|
2) "c"
|
|
|
|
|
3) "d"
|
|
|
|
|
4) "e"
|
|
|
|
|
5) "f"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
按词典顺序返回排序集中的一系列成员
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZREVRANGEBYLEX
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZREVRANGEBYLEX key max min [LIMIT offset count]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD myzset 0 a 0 b 0 c 0 d 0 e 0 f 0 g
|
|
|
|
|
(integer) 7
|
|
|
|
|
redis> ZREVRANGEBYLEX myzset [c -
|
|
|
|
|
1) "c"
|
|
|
|
|
2) "b"
|
|
|
|
|
3) "a"
|
|
|
|
|
redis> ZREVRANGEBYLEX myzset (c -
|
|
|
|
|
1) "b"
|
|
|
|
|
2) "a"
|
|
|
|
|
redis> ZREVRANGEBYLEX myzset (g [aaa
|
|
|
|
|
1) "f"
|
|
|
|
|
2) "e"
|
|
|
|
|
3) "d"
|
|
|
|
|
4) "c"
|
|
|
|
|
5) "b"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
返回排序集中的一系列成员,按字典范围,从高到低的字符串排序。
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZRANGEBYSCORE
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZRANGEBYSCORE key min max [WITHSCORES] [LIMIT offset count]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD myzset 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 3 "three"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZRANGEBYSCORE myzset -inf +inf
|
|
|
|
|
1) "one"
|
|
|
|
|
2) "two"
|
|
|
|
|
3) "three"
|
|
|
|
|
redis> ZRANGEBYSCORE myzset 1 2
|
|
|
|
|
1) "one"
|
|
|
|
|
2) "two"
|
|
|
|
|
redis> ZRANGEBYSCORE myzset (1 2
|
|
|
|
|
1) "two"
|
|
|
|
|
redis> ZRANGEBYSCORE myzset (1 (2
|
|
|
|
|
(empty list or set)
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
按分数返回排序集中的一系列成员
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZRANK
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZRANK key member
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD myzset 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 3 "three"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZRANK myzset "three"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> ZRANK myzset "four"
|
|
|
|
|
(nil)
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
确定有序集合中成员的索引
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZREM
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZREM key member [member ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD myzset 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 3 "three"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZREM myzset "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZRANGE myzset 0 -1 WITHSCORES
|
|
|
|
|
1) "one"
|
|
|
|
|
2) "1"
|
|
|
|
|
3) "three"
|
|
|
|
|
4) "3"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
从有序集合中移除一个或多个成员
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZREMRANGEBYLEX
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZREMRANGEBYLEX key min max
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD myzset 0 aaaa 0 b 0 c 0 d 0 e
|
|
|
|
|
(integer) 5
|
|
|
|
|
redis> ZADD myzset 0 foo 0 zap 0 zip 0 ALPHA 0 alpha
|
|
|
|
|
(integer) 5
|
|
|
|
|
redis> ZRANGE myzset 0 -1
|
|
|
|
|
1) "ALPHA"
|
|
|
|
|
2) "aaaa"
|
|
|
|
|
3) "alpha"
|
|
|
|
|
4) "b"
|
|
|
|
|
5) "c"
|
|
|
|
|
6) "d"
|
|
|
|
|
7) "e"
|
|
|
|
|
8) "foo"
|
|
|
|
|
9) "zap"
|
|
|
|
|
10) "zip"
|
|
|
|
|
redis> ZREMRANGEBYLEX myzset [alpha [omega
|
|
|
|
|
(integer) 6
|
|
|
|
|
redis> ZRANGE myzset 0 -1
|
|
|
|
|
1) "ALPHA"
|
|
|
|
|
2) "aaaa"
|
|
|
|
|
3) "zap"
|
|
|
|
|
4) "zip"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
删除给定词典范围之间的排序集中的所有成员
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZREMRANGEBYRANK
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZREMRANGEBYRANK key start stop
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD myzset 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 3 "three"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZREMRANGEBYRANK myzset 0 1
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> ZRANGE myzset 0 -1 WITHSCORES
|
|
|
|
|
1) "three"
|
|
|
|
|
2) "3"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
删除给定索引内排序集中的所有成员
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZREMRANGEBYSCORE
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZREMRANGEBYSCORE key min max
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD myzset 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 3 "three"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZREMRANGEBYSCORE myzset -inf (2
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZRANGE myzset 0 -1 WITHSCORES
|
|
|
|
|
1) "two"
|
|
|
|
|
2) "2"
|
|
|
|
|
3) "three"
|
|
|
|
|
4) "3"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
删除给定分数内排序集中的所有成员
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZREVRANGE
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZREVRANGE key start stop [WITHSCORES]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD myzset 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 3 "three"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZREVRANGE myzset 0 -1
|
|
|
|
|
1) "three"
|
|
|
|
|
2) "two"
|
|
|
|
|
3) "one"
|
|
|
|
|
redis> ZREVRANGE myzset 2 3
|
|
|
|
|
1) "one"
|
|
|
|
|
redis> ZREVRANGE myzset -2 -1
|
|
|
|
|
1) "two"
|
|
|
|
|
2) "one"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
按索引返回排序集中的一系列成员,分数从高到低排序
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZREVRANGEBYSCORE
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZREVRANGEBYSCORE key max min [WITHSCORES] [LIMIT offset count]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD myzset 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 3 "three"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZREVRANGEBYSCORE myzset +inf -inf
|
|
|
|
|
1) "three"
|
|
|
|
|
2) "two"
|
|
|
|
|
3) "one"
|
|
|
|
|
redis> ZREVRANGEBYSCORE myzset 2 1
|
|
|
|
|
1) "two"
|
|
|
|
|
2) "one"
|
|
|
|
|
redis> ZREVRANGEBYSCORE myzset 2 (1
|
|
|
|
|
1) "two"
|
|
|
|
|
redis> ZREVRANGEBYSCORE myzset (2 (1
|
|
|
|
|
(empty list or set)
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
按分数返回排序集中的一系列成员,分数从高到低排序
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZREVRANK
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZREVRANK key member
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD myzset 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 3 "three"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZREVRANK myzset "one"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> ZREVRANK myzset "four"
|
|
|
|
|
(nil)
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
确定一个成员在有序集合中的索引,分数从高到低排序
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZUNION
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZUNION numkeys key [key ...] [WEIGHTS weight [weight ...]]
|
|
|
|
|
[AGGREGATE SUM|MIN|MAX] [WITHSCORES]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD zset1 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD zset1 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD zset2 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD zset2 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD zset2 3 "three"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZUNION 2 zset1 zset2
|
|
|
|
|
1) "one"
|
|
|
|
|
2) "three"
|
|
|
|
|
3) "two"
|
|
|
|
|
redis> ZUNION 2 zset1 zset2 WITHSCORES
|
|
|
|
|
1) "one"
|
|
|
|
|
2) "2"
|
|
|
|
|
3) "three"
|
|
|
|
|
4) "3"
|
|
|
|
|
5) "two"
|
|
|
|
|
6) "4"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
添加多个排序集
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZMSCORE
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZMSCORE key member [member ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD myzset 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD myzset 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZMSCORE myzset "one" "two" "nofield"
|
|
|
|
|
1) "1"
|
|
|
|
|
2) "2"
|
|
|
|
|
3) (nil)
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
获取与排序集中给定成员关联的分数
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### ZUNIONSTORE
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ZUNIONSTORE destination numkeys key [key ...] [WEIGHTS weight
|
|
|
|
|
[weight ...]] [AGGREGATE SUM|MIN|MAX]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> ZADD zset1 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD zset1 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD zset2 1 "one"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD zset2 2 "two"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZADD zset2 3 "three"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> ZUNIONSTORE out 2 zset1 zset2 WEIGHTS 2 3
|
|
|
|
|
(integer) 3
|
|
|
|
|
redis> ZRANGE out 0 -1 WITHSCORES
|
|
|
|
|
1) "one"
|
|
|
|
|
2) "5"
|
|
|
|
|
3) "three"
|
|
|
|
|
4) "9"
|
|
|
|
|
5) "two"
|
|
|
|
|
6) "10"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
添加多个排序集并将生成的排序集存储在新键中
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
Redis地图坐标集类型设置
|
|
|
|
|
------------
|
|
|
|
|
<!--rehype:body-class=cols-2-->
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### GEOADD
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
GEOADD key longitude latitude member [longitude latitude member ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> GEOADD Sicily 13.361389 38.115556 "Palermo" 15.087269 37.502669 "Catania"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> GEODIST Sicily Palermo Catania
|
|
|
|
|
"166274.1516"
|
|
|
|
|
redis> GEORADIUS Sicily 15 37 100 km
|
|
|
|
|
1) "Catania"
|
|
|
|
|
redis> GEORADIUS Sicily 15 37 200 km
|
|
|
|
|
1) "Palermo"
|
|
|
|
|
2) "Catania"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
在使用排序集表示的地理空间索引中添加一个或多个地理空间项
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### GEOHASH
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
GEOHASH key member [member ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> GEOADD Sicily 13.361389 38.115556 "Palermo" 15.087269 37.502669 "Catania"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> GEOHASH Sicily Palermo Catania
|
|
|
|
|
1) "sqc8b49rny0"
|
|
|
|
|
2) "sqdtr74hyu0"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
将地理空间索引的成员作为标准 geohash 字符串返回
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### GEOPOS
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
GEOPOS key member [member ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> GEOADD Sicily 13.361389 38.115556 "Palermo" 15.087269 37.502669 "Catania"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> GEOPOS Sicily Palermo Catania NonExisting
|
|
|
|
|
1) 1) "13.36138933897018433"
|
|
|
|
|
2) "38.11555639549629859"
|
|
|
|
|
2) 1) "15.08726745843887329"
|
|
|
|
|
2) "37.50266842333162032"
|
|
|
|
|
3) (nil)
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
返回地理空间索引成员的经度和纬度
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### GEODIST
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
GEODIST key member1 member2 [m|km|ft|mi]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> GEOADD Sicily 13.361389 38.115556 "Palermo" 15.087269 37.502669 "Catania"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> GEODIST Sicily Palermo Catania
|
|
|
|
|
"166274.1516"
|
|
|
|
|
redis> GEODIST Sicily Palermo Catania km
|
|
|
|
|
"166.2742"
|
|
|
|
|
redis> GEODIST Sicily Palermo Catania mi
|
|
|
|
|
"103.3182"
|
|
|
|
|
redis> GEODIST Sicily Foo Bar
|
|
|
|
|
(nil)
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
返回地理空间索引的两个成员之间的距离
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### GEORADIUS
|
2022-12-01 10:18:10 +08:00
|
|
|
|
<!--rehype:wrap-class=row-span-3-->
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
GEORADIUS key longitude latitude radius m|km|ft|mi [WITHCOORD] [WITHDIST] [WITHHASH] [COUNT
|
|
|
|
|
count] [ASC|DESC] [STORE key] [STOREDIST key]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> GEOADD Sicily 13.361389 38.115556 "Palermo" 15.087269 37.502669 "Catania"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> GEORADIUS Sicily 15 37 200 km WITHDIST
|
|
|
|
|
1) 1) "Palermo"
|
|
|
|
|
2) "190.4424"
|
|
|
|
|
2) 1) "Catania"
|
|
|
|
|
2) "56.4413"
|
|
|
|
|
redis> GEORADIUS Sicily 15 37 200 km WITHCOORD
|
|
|
|
|
1) 1) "Palermo"
|
|
|
|
|
2) 1) "13.36138933897018433"
|
|
|
|
|
2) "38.11555639549629859"
|
|
|
|
|
2) 1) "Catania"
|
|
|
|
|
2) 1) "15.08726745843887329"
|
|
|
|
|
2) "37.50266842333162032"
|
|
|
|
|
redis> GEORADIUS Sicily 15 37 200 km WITHDIST WITHCOORD
|
|
|
|
|
1) 1) "Palermo"
|
|
|
|
|
2) "190.4424"
|
|
|
|
|
3) 1) "13.36138933897018433"
|
|
|
|
|
2) "38.11555639549629859"
|
|
|
|
|
2) 1) "Catania"
|
|
|
|
|
2) "56.4413"
|
|
|
|
|
3) 1) "15.08726745843887329"
|
|
|
|
|
2) "37.50266842333162032"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
查询表示地理空间索引的排序集,以获取与某个点的给定最大距离匹配的成员
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### GEORADIUSBYMEMBER
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
GEORADIUSBYMEMBER key member radius m|km|ft|mi [WITHCOORD] [WITHDIST] [WITHHASH] [COUNT count]
|
|
|
|
|
[ASC|DESC] [STORE key] [STOREDIST key]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> GEOADD Sicily 13.583333 37.316667 "Agrigento"
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> GEOADD Sicily 13.361389 38.115556 "Palermo" 15.087269 37.502669 "Catania"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> GEORADIUSBYMEMBER Sicily Agrigento 100 km
|
|
|
|
|
1) "Agrigento"
|
|
|
|
|
2) "Palermo"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
查询表示地理空间索引的排序集,以获取与成员的给定最大距离相匹配的成员
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### GEOSEARCH
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
GEOSEARCH key [FROMMEMBER member] [FROMLONLAT longitude latitude] [BYRADIUS radius m|km|ft|mi]
|
|
|
|
|
[BYBOX width height m|km|ft|mi] [ASC|DESC] [COUNT count] [WITHCOORD] [WITHDIST] [WITHHASH]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> GEOADD Sicily 13.361389 38.115556 "Palermo" 15.087269 37.502669 "Catania"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> GEOADD Sicily 12.758489 38.788135 "edge1" 17.241510 38.788135 "edge2"
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> GEOSEARCH Sicily FROMLONLAT 15 37 BYRADIUS 200 km ASC
|
|
|
|
|
1) "Catania"
|
|
|
|
|
2) "Palermo"
|
|
|
|
|
redis> GEOSEARCH Sicily FROMLONLAT 15 37 BYBOX 400 400 km ASC
|
|
|
|
|
1) "Catania"
|
|
|
|
|
2) "Palermo"
|
|
|
|
|
3) "edge2"
|
|
|
|
|
4) "edge1"
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 09:06:44 +08:00
|
|
|
|
查询表示地理空间索引的排序集,以获取框或圆区域内的成员。
|
|
|
|
|
|
|
|
|
|
### 一些引用(可能有帮助)
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
:- | --
|
|
|
|
|
:- | --
|
|
|
|
|
[GEOSEARCHSTORE](https://redis.io/commands/geosearchstore) | 查询表示地理空间索引的排序集以获取框或圆区域内的成员,并将结果存储在另一个键中
|
|
|
|
|
<!--rehype:className=style-list-->
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
Redis超文本日志类型设置
|
|
|
|
|
------------
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### PFADD
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
PFADD key element [element ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> PFADD hll a b c d e f g
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> PFCOUNT hll
|
|
|
|
|
(integer) 7
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 09:06:44 +08:00
|
|
|
|
将指定的元素添加到指定的HyperLogLog。
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### PFCOUNT
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
PFCOUNT key [key ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> PFADD hll foo bar zap
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> PFADD hll zap zap zap
|
|
|
|
|
(integer) 0
|
|
|
|
|
redis> PFADD hll foo bar
|
|
|
|
|
(integer) 0
|
|
|
|
|
redis> PFCOUNT hll
|
|
|
|
|
(integer) 3
|
|
|
|
|
redis> PFADD some-other-hll 1 2 3
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> PFCOUNT hll some-other-hll
|
|
|
|
|
(integer) 6
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
2022-12-01 09:06:44 +08:00
|
|
|
|
返回HyperLogLog在键处观察到的集合的近似基数。
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### PFMERGE
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
PFMERGE destkey sourcekey [sourcekey ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> PFADD hll1 foo bar zap a
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> PFADD hll2 a b c foo
|
|
|
|
|
(integer) 1
|
|
|
|
|
redis> PFMERGE hll3 hll1 hll2
|
|
|
|
|
"OK"
|
|
|
|
|
redis> PFCOUNT hll3
|
|
|
|
|
(integer) 6
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
将N个不同的HyperLogLogs合并成一个。
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
Redis流命令
|
|
|
|
|
------------
|
|
|
|
|
<!--rehype:body-class=cols-2-->
|
|
|
|
|
|
|
|
|
|
### 一些引用(可能有帮助)
|
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
:- | --
|
|
|
|
|
:- | --
|
|
|
|
|
[XINFO](https://redis.io/commands/xinfo) | 获取有关流和消费者组的信息
|
|
|
|
|
[XDEL](https://redis.io/commands/xdel) | 从流中删除指定的条目。返回实际删除的项目数,如果某些 ID 不存在,则可能与传递的 ID 数不同
|
|
|
|
|
[XREAD](https://redis.io/commands/xread) | 返回多个流中从未见过的元素,其 ID 大于调用者为每个流报告的 ID
|
|
|
|
|
[XGROUP](https://redis.io/commands/xgroup) | 创建、销毁和管理消费者组
|
|
|
|
|
[XREADGROUP](https://redis.io/commands/xreadgroup) | 使用消费者组从流中返回新条目,或访问给定消费者的待处理条目的历史记录
|
|
|
|
|
[XCLAIM](https://redis.io/commands/xclaim) | 更改(或获取)消费者组中消息的所有权,就好像消息已传递给指定的消费者一样
|
|
|
|
|
[XPENDING](https://redis.io/commands/xpending) | 从流消费者组待定条目列表中返回信息和条目,这些信息是已获取但从未确认的消息
|
|
|
|
|
<!--rehype:className=style-list-->
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### XADD
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
XADD key [MAXLEN [=|~] length] [NOMKSTREAM] *|ID field value [field value ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> XADD mystream * name Sara surname OConnor
|
|
|
|
|
"1609040574632-0"
|
|
|
|
|
redis> XADD mystream * field1 value1 field2 value2 field3 value3
|
|
|
|
|
"1609040574632-1"
|
|
|
|
|
redis> XLEN mystream
|
|
|
|
|
(integer) 2
|
|
|
|
|
redis> XRANGE mystream - +
|
|
|
|
|
1) 1) "1609040574632-0"
|
|
|
|
|
2) 1) "name"
|
|
|
|
|
2) "Sara"
|
|
|
|
|
3) "surname"
|
|
|
|
|
4) "OConnor"
|
|
|
|
|
2) 1) "1609040574632-1"
|
|
|
|
|
2) 1) "field1"
|
|
|
|
|
2) "value1"
|
|
|
|
|
3) "field2"
|
|
|
|
|
4) "value2"
|
|
|
|
|
5) "field3"
|
|
|
|
|
6) "value3"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
将新条目附加到流
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### XTRIM
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
XTRIM key MAXLEN [=|~] length
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> XADD mystream * field1 A field2 B field3 C field4 D
|
|
|
|
|
"1609040575750-0"
|
|
|
|
|
redis> XTRIM mystream MAXLEN 2
|
|
|
|
|
(integer) 0
|
|
|
|
|
redis> XRANGE mystream - +
|
|
|
|
|
1) 1) "1609040575750-0"
|
|
|
|
|
2) 1) "field1"
|
|
|
|
|
2) "A"
|
|
|
|
|
3) "field2"
|
|
|
|
|
4) "B"
|
|
|
|
|
5) "field3"
|
|
|
|
|
6) "C"
|
|
|
|
|
7) "field4"
|
|
|
|
|
8) "D"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
将流修剪为(大约如果传递了“~”)特定大小
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### XRANGE
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
XRANGE key start end [COUNT count]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> XADD writers * name Virginia surname Woolf
|
|
|
|
|
"1609040578002-0"
|
|
|
|
|
redis> XADD writers * name Jane surname Austen
|
|
|
|
|
"1609040578002-1"
|
|
|
|
|
redis> XADD writers * name Toni surname Morrison
|
|
|
|
|
"1609040578003-0"
|
|
|
|
|
redis> XADD writers * name Agatha surname Christie
|
|
|
|
|
"1609040578003-1"
|
|
|
|
|
redis> XADD writers * name Ngozi surname Adichie
|
|
|
|
|
"1609040578003-2"
|
|
|
|
|
redis> XLEN writers
|
|
|
|
|
(integer) 5
|
|
|
|
|
redis> XRANGE writers - + COUNT 2
|
|
|
|
|
1) 1) "1609040578002-0"
|
|
|
|
|
2) 1) "name"
|
|
|
|
|
2) "Virginia"
|
|
|
|
|
3) "surname"
|
|
|
|
|
4) "Woolf"
|
|
|
|
|
2) 1) "1609040578002-1"
|
|
|
|
|
2) 1) "name"
|
|
|
|
|
2) "Jane"
|
|
|
|
|
3) "surname"
|
|
|
|
|
4) "Austen"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
返回流中的一系列元素,其 ID 与指定的 ID 间隔相匹配
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### XREVRANGE
|
2022-12-01 10:18:10 +08:00
|
|
|
|
<!--rehype:wrap-class=row-span-2-->
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
XREVRANGE key end start [COUNT count]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> XADD writers * name Virginia surname Woolf
|
|
|
|
|
"1609040579130-0"
|
|
|
|
|
redis> XADD writers * name Jane surname Austen
|
|
|
|
|
"1609040579130-1"
|
|
|
|
|
redis> XADD writers * name Toni surname Morrison
|
|
|
|
|
"1609040579130-2"
|
|
|
|
|
redis> XADD writers * name Agatha surname Christie
|
|
|
|
|
"1609040579131-0"
|
|
|
|
|
redis> XADD writers * name Ngozi surname Adichie
|
|
|
|
|
"1609040579131-1"
|
|
|
|
|
redis> XLEN writers
|
|
|
|
|
(integer) 5
|
|
|
|
|
redis> XREVRANGE writers + - COUNT 1
|
|
|
|
|
1) 1) "1609040579131-1"
|
|
|
|
|
2) 1) "name"
|
|
|
|
|
2) "Ngozi"
|
|
|
|
|
3) "surname"
|
|
|
|
|
4) "Adichie"
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
返回流中的一系列元素,ID 与指定的 ID 间隔相匹配,与 XRANGE 相比,顺序相反(从大到小的 ID)
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### XLEN
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
XLEN key
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> XADD mystream * item 1
|
|
|
|
|
"1609040580250-0"
|
|
|
|
|
redis> XADD mystream * item 2
|
|
|
|
|
"1609040580250-1"
|
|
|
|
|
redis> XADD mystream * item 3
|
|
|
|
|
"1609040580251-0"
|
|
|
|
|
redis> XLEN mystream
|
|
|
|
|
(integer) 3
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
返回流中的条目数
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### XACK
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
XACK key group ID [ID ...]
|
|
|
|
|
```
|
2022-12-01 09:47:29 +08:00
|
|
|
|
|
|
|
|
|
#### 例子
|
|
|
|
|
|
|
|
|
|
```shell
|
2022-12-01 09:06:44 +08:00
|
|
|
|
redis> XACK mystream mygroup 1526569495631-0
|
|
|
|
|
ERR Unknown or disabled command 'XACK'
|
|
|
|
|
```
|
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
将待处理消息标记为已正确处理,有效地将其从消费者组的待处理条目列表中删除,该命令的返回值是成功确认的消息数,即我们实际能够在 `PEL` 中解析的 `ID`
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
|
|
|
|
集群方面的东西
|
|
|
|
|
------------
|
|
|
|
|
<!--rehype:body-class=cols-2-->
|
|
|
|
|
|
|
|
|
|
### 节点、集群
|
2022-12-01 10:18:10 +08:00
|
|
|
|
<!--rehype:wrap-class=row-span-3-->
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
:- | --
|
|
|
|
|
:- | --
|
2022-12-01 09:47:29 +08:00
|
|
|
|
| [CLUSTER ADDSLOTS](https://redis.io/commands/cluster-addslots) | 为接收节点分配新的哈希槽 |
|
2022-12-01 09:06:44 +08:00
|
|
|
|
| [CLUSTER BUMPEPOCH](https://redis.io/commands/cluster-bumpepoch) | 提前集群配置纪元 |
|
2022-12-01 09:47:29 +08:00
|
|
|
|
| [CLUSTER COUNT-FAILURE-REPORTS](https://redis.io/commands/cluster-count-failure-reports) | 返回给定节点的活动故障报告数 |
|
|
|
|
|
| [CLUSTER COUNTKEYSINSLOT](https://redis.io/commands/cluster-countkeysinslot) | 返回指定哈希槽中本地键的个数 |
|
|
|
|
|
| [CLUSTER DELSLOTS](https://redis.io/commands/cluster-delslots) | 在接收节点中将哈希槽设置为未绑定 |
|
|
|
|
|
| [CLUSTER FAILOVER](https://redis.io/commands/cluster-failover) | 强制副本对其主副本执行手动故障转移 |
|
2022-12-01 09:06:44 +08:00
|
|
|
|
| [CLUSTER FLUSHSLOTS](https://redis.io/commands/cluster-flushslots) | 删除节点自身的slot信息 |
|
2022-12-01 09:47:29 +08:00
|
|
|
|
| [CLUSTER FORGET](https://redis.io/commands/cluster-forget) | 从节点表中删除一个节点 |
|
|
|
|
|
| [CLUSTER GETKEYSINSLOT](https://redis.io/commands/cluster-getkeysinslot) | 返回指定哈希槽中的本地键名 |
|
2022-12-01 09:06:44 +08:00
|
|
|
|
| [CLUSTER INFO](https://redis.io/commands/cluster-info) | 提供有关 Redis 集群节点状态的信息 |
|
2022-12-01 09:47:29 +08:00
|
|
|
|
| [CLUSTER KEYSLOT](https://redis.io/commands/cluster-keyslot) | 返回指定键的哈希槽 |
|
|
|
|
|
| [CLUSTER MEET](https://redis.io/commands/cluster-meet) | 强制节点集群与另一个节点握手 |
|
2022-12-01 09:06:44 +08:00
|
|
|
|
| [CLUSTER MYID](https://redis.io/commands/cluster-myid) | 返回节点id |
|
|
|
|
|
| [CLUSTER NODES](https://redis.io/commands/cluster-nodes) | 获取节点的集群配置 |
|
2022-12-01 09:47:29 +08:00
|
|
|
|
| [CLUSTER REPLICATE](https://redis.io/commands/cluster-replicate) | 将节点重新配置为指定主节点的副本 |
|
|
|
|
|
| [CLUSTER RESET](https://redis.io/commands/cluster-reset) | 重置 Redis 集群节点 |
|
2022-12-01 09:06:44 +08:00
|
|
|
|
| [CLUSTER SAVECONFIG](https://redis.io/commands/cluster-saveconfig) | 强制节点将集群状态保存在磁盘上 |
|
2022-12-01 09:47:29 +08:00
|
|
|
|
| [CLUSTER SET-CONFIG-EPOCH](https://redis.io/commands/cluster-set-config-epoch) | 在新节点中设置配置纪元 |
|
|
|
|
|
| [CLUSTER SETSLOT](https://redis.io/commands/cluster-setslot) | 将哈希槽绑定到特定节点 |
|
|
|
|
|
| [CLUSTER SLAVES](https://redis.io/commands/cluster-slaves) | 列出指定主节点的副本节点 |
|
|
|
|
|
| [CLUSTER REPLICAS](https://redis.io/commands/cluster-replicas) | 列出指定主节点的副本节点 |
|
2022-12-01 09:06:44 +08:00
|
|
|
|
| [CLUSTER SLOTS](https://redis.io/commands/cluster-slots) | 获取集群插槽数组到节点映射 |
|
|
|
|
|
| [READONLY](https://redis.io/commands/readonly) | 为到集群副本节点的连接启用读取查询 |
|
|
|
|
|
| [READWRITE](https://redis.io/commands/readwrite) | 禁用对集群副本节点连接的读取查询 |
|
|
|
|
|
|
|
|
|
|
### 交易
|
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
:- | --
|
|
|
|
|
:- | --
|
|
|
|
|
[DISCARD](https://redis.io/commands/discard) | 丢弃 MULTI 之后发出的所有命令
|
|
|
|
|
[EXEC](https://redis.io/commands/exec) | 执行 MULTI 之后发出的所有命令
|
|
|
|
|
[MULTI](https://redis.io/commands/multi) | 标记事务块的开始
|
|
|
|
|
[UNWATCH](https://redis.io/commands/unwatch) | 忘记所有监视的键
|
|
|
|
|
[WATCH](https://redis.io/commands/watch) | 观察给定的键以确定MULTI/EXEC块的执行
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### 脚本
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
:- | --
|
|
|
|
|
:- | --
|
|
|
|
|
[EVAL](https://redis.io/commands/eval) | 执行 Lua 脚本服务器端
|
|
|
|
|
[EVALSHA](https://redis.io/commands/evalsha) | 执行 Lua 脚本服务器端
|
|
|
|
|
[SCRIPT DEBUG](https://redis.io/commands/script-debug) | 为执行的脚本设置调试模式
|
|
|
|
|
[SCRIPT EXISTS](https://redis.io/commands/script-exists) | 检查脚本缓存中是否存在脚本
|
|
|
|
|
[SCRIPT FLUSH](https://redis.io/commands/script-flush) | 从脚本缓存中删除所有脚本
|
|
|
|
|
[SCRIPT KILL](https://redis.io/commands/script-kill) | 终止当前正在执行的脚本
|
|
|
|
|
[SCRIPT LOAD](https://redis.io/commands/script-load) | 将指定的 Lua 脚本加载到脚本缓存中
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 09:47:29 +08:00
|
|
|
|
### 发布操作
|
2022-12-01 09:06:44 +08:00
|
|
|
|
|
2022-12-01 10:18:10 +08:00
|
|
|
|
:- | --
|
|
|
|
|
:- | --
|
|
|
|
|
[PSUBSCRIBE](https://redis.io/commands/psubscribe) | 侦听发布到与给定模式匹配的频道的消息
|
|
|
|
|
[PUBSUB](https://redis.io/commands/pubsub) | 检查 Pub/Sub 子系统的状态
|
|
|
|
|
[PUBLISH](https://redis.io/commands/publish) | 向频道发布消息
|
|
|
|
|
[PUNSUBSCRIBE](https://redis.io/commands/punsubscribe) | 停止监听发布到与给定模式匹配的频道的消息
|
|
|
|
|
[SUBSCRIBE](https://redis.io/commands/subscribe) | 收听发布到给定频道的消息
|
|
|
|
|
[UNSUBSCRIBE](https://redis.io/commands/unsubscribe) | 停止收听发布到给定频道的消息
|