w3resource

Redis String: MGET

MGET key1 [key2..]

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.

Syntax:

MGET KEY1 KEY2 .. KEYN

Available since

1.0.0.

Return Value

Array, a list of values at the specified keys.

Return Value Type

Array

Example: Redis MGET

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)

Previous: GETBIT
Next: SETBIT



Follow us on Facebook and Twitter for latest update.