Redis MGET命令

 
Redis MGET 命令返回一个或多个给定 key 的值。

可用版本

MGET 命令可用版本:>= 1.0.0

语法

Redis MGET 命令的基本语法如下:
MGET key [key ...]

返回值

返回所有 key 存储的 value 值。

命令演示

127.0.0.1:6379> MSET test "this is my site" site "hello www.biancheng.net"
OK
127.0.0.1:6379> MGET test site
1) "this is my site"
2) "hello www.biancheng.net"