X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/924aa408b99837036b679bd3895f836af6bc763f..c086b85afb1f0f2d9aa76faa5a4c8536380670a2:/doc/MgetCommand.html diff --git a/doc/MgetCommand.html b/doc/MgetCommand.html index 0e8120f2..0c716907 100644 --- a/doc/MgetCommand.html +++ b/doc/MgetCommand.html @@ -16,7 +16,7 @@
-MgetCommand: Contents
  MGET _key1_ _key2_ ... _keyN_
    Return value
    Example
    See also +MgetCommand: Contents
  MGET _key1_ _key2_ ... _keyN_
    Return value
    Example

MgetCommand

@@ -26,7 +26,7 @@
-

MGET _key1_ _key2_ ... _keyN_

+ #sidebar StringCommandsSidebar

MGET _key1_ _key2_ ... _keyN_

Time complexity: O(1) for every key
Get the values of all the specified keys. If one or more keys dont existor is not of type String, a 'nil' value is returned instead of the valueof the specified key, but the operation never fails.

Return value

Multi bulk reply

Example

 $ ./redis-cli set foo 1000
@@ -41,8 +41,8 @@ $ ./redis-cli mget foo bar nokey
 2. 2000
 3. (nil)
 $ 
-

See also

- + +