Redis - String Mget Command



Redis MGET command is used to get the values of all specified keys. For every key that does not hold a string value or does not exist, the special value nil is returned.

Return Value

Array, list of values at the specified keys.

Syntax

Following is the basic syntax of Redis MGET command.

redis 127.0.0.1:6379> MGET KEY1 KEY2 .. KEYN

Example

redis 127.0.0.1:6379> SET key1 "hello" 
OK 
redis 127.0.0.1:6379> SET key2 "world" 
OK 
redis 127.0.0.1:6379> MGET key1 key2 someOtherKey 
1) "Hello" 
2) "World" 
3) (nil)
redis_strings.htm
Advertisements