summaryrefslogtreecommitdiffstats
path: root/iredis/data/commands/del.md
diff options
context:
space:
mode:
Diffstat (limited to 'iredis/data/commands/del.md')
-rw-r--r--iredis/data/commands/del.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/iredis/data/commands/del.md b/iredis/data/commands/del.md
new file mode 100644
index 0000000..fbb05ec
--- /dev/null
+++ b/iredis/data/commands/del.md
@@ -0,0 +1,13 @@
+Removes the specified keys. A key is ignored if it does not exist.
+
+@return
+
+@integer-reply: The number of keys that were removed.
+
+@examples
+
+```cli
+SET key1 "Hello"
+SET key2 "World"
+DEL key1 key2 key3
+```