Redis MSET 命令用于同时设置一个或多个 key-value 键值对。
MSET 命令可用版本:>= 1.0.1
Redis MSET 命令的基本语法如下:
MSET key value [key value ...]
返回 OK
127.0.0.1:6379> MSET test "this is my site" site "hello www.cdsy.xyz" OK 127.0.0.1:6379> get test "this is my site" 127.0.0.1:6379> get site "hello www.cdsy.xyz"