summaryrefslogtreecommitdiffstats
path: root/iredis/data/commands/hget.md
diff options
context:
space:
mode:
Diffstat (limited to 'iredis/data/commands/hget.md')
-rw-r--r--iredis/data/commands/hget.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/iredis/data/commands/hget.md b/iredis/data/commands/hget.md
new file mode 100644
index 0000000..12556a1
--- /dev/null
+++ b/iredis/data/commands/hget.md
@@ -0,0 +1,14 @@
+Returns the value associated with `field` in the hash stored at `key`.
+
+@return
+
+@bulk-string-reply: the value associated with `field`, or `nil` when `field` is
+not present in the hash or `key` does not exist.
+
+@examples
+
+```cli
+HSET myhash field1 "foo"
+HGET myhash field1
+HGET myhash field2
+```