summaryrefslogtreecommitdiffstats
path: root/iredis/data/commands/type.md
diff options
context:
space:
mode:
Diffstat (limited to 'iredis/data/commands/type.md')
-rw-r--r--iredis/data/commands/type.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/iredis/data/commands/type.md b/iredis/data/commands/type.md
new file mode 100644
index 0000000..d27a7e8
--- /dev/null
+++ b/iredis/data/commands/type.md
@@ -0,0 +1,18 @@
+Returns the string representation of the type of the value stored at `key`. The
+different types that can be returned are: `string`, `list`, `set`, `zset`,
+`hash` and `stream`.
+
+@return
+
+@simple-string-reply: type of `key`, or `none` when `key` does not exist.
+
+@examples
+
+```cli
+SET key1 "value"
+LPUSH key2 "value"
+SADD key3 "value"
+TYPE key1
+TYPE key2
+TYPE key3
+```