关键词

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.lmcjl.com"
OK
127.0.0.1:6379> get test
"this is my site"
127.0.0.1:6379> get site
"hello www.lmcjl.com"

本文链接:http://task.lmcjl.com/news/16499.html

展开阅读全文