Files
redis-docs/docs/MgetCommand.rst
Kenneth Reitz 525e9fd3d3 all into sphinx
2011-04-06 13:27:48 -04:00

40 lines
978 B
ReStructuredText
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
`|Redis Documentation| <index.html>`_
**MgetCommand: Contents**
  `MGET \_key1\_ \_key2\_ ... \_keyN\_ <#MGET%20_key1_%20_key2_%20...%20_keyN_>`_
    `Return value <#Return%20value>`_
    `Example <#Example>`_
MgetCommand
===========
#sidebar `StringCommandsSidebar <StringCommandsSidebar.html>`_
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 <ReplyTypes.html>`_
Example
-------
::
$ ./redis-cli set foo 1000
+OK
$ ./redis-cli set bar 2000
+OK
$ ./redis-cli mget foo bar
1. 1000
2. 2000
$ ./redis-cli mget foo bar nokey
1. 1000
2. 2000
3. (nil)
$
.. |Redis Documentation| image:: redis.png