X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/029524dbff9b076a5d1b7b97428981519e34886b..c7019f7019a7ded425e700f391263227e259bbcb:/doc/MgetCommand.html diff --git a/doc/MgetCommand.html b/doc/MgetCommand.html new file mode 100644 index 00000000..0c716907 --- /dev/null +++ b/doc/MgetCommand.html @@ -0,0 +1,52 @@ + + + +
+ + + +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.+
+$ ./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) +$ ++ +