Redis MSET命令
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.biancheng.net" OK 127.0.0.1:6379> get test "this is my site" 127.0.0.1:6379> get site "hello www.biancheng.net"