summaryrefslogtreecommitdiffstats
path: root/iredis/data/commands/mset.md
diff options
context:
space:
mode:
Diffstat (limited to 'iredis/data/commands/mset.md')
-rw-r--r--iredis/data/commands/mset.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/iredis/data/commands/mset.md b/iredis/data/commands/mset.md
new file mode 100644
index 0000000..9c17f86
--- /dev/null
+++ b/iredis/data/commands/mset.md
@@ -0,0 +1,18 @@
+Sets the given keys to their respective values. `MSET` replaces existing values
+with new values, just as regular `SET`. See `MSETNX` if you don't want to
+overwrite existing values.
+
+`MSET` is atomic, so all given keys are set at once. It is not possible for
+clients to see that some of the keys were updated while others are unchanged.
+
+@return
+
+@simple-string-reply: always `OK` since `MSET` can't fail.
+
+@examples
+
+```cli
+MSET key1 "Hello" key2 "World"
+GET key1
+GET key2
+```