1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-08-01 16:28:03 +08:00

Merge pull request #887 from das-friday-night/patch-1

Update redis-all.md
This commit is contained in:
SnailClimb 2020-08-14 21:58:46 +08:00 committed by GitHub
commit cf0527f110
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -151,7 +151,7 @@ OK
**批量设置** :
``` bash
127.0.0.1:6379> mest key1 value1 key2 value2 # 批量设置 key-value 类型的值
127.0.0.1:6379> mset key1 value1 key2 value2 # 批量设置 key-value 类型的值
OK
127.0.0.1:6379> mget key1 key2 # 批量获取多个 key 对应的 value
1) "value1"