summaryrefslogtreecommitdiffstats
path: root/iredis/data/commands/getex.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-01-04 07:19:32 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-01-04 07:19:32 +0000
commit7480e618ec785ba8a1c74c8a150cffe5880fb3bb (patch)
tree87422376dd9a7eee55850f0fce9a8bb4c13e44a2 /iredis/data/commands/getex.md
parentAdding upstream version 1.12.1. (diff)
downloadiredis-7480e618ec785ba8a1c74c8a150cffe5880fb3bb.tar.xz
iredis-7480e618ec785ba8a1c74c8a150cffe5880fb3bb.zip
Adding upstream version 1.13.0.upstream/1.13.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'iredis/data/commands/getex.md')
-rw-r--r--iredis/data/commands/getex.md16
1 files changed, 7 insertions, 9 deletions
diff --git a/iredis/data/commands/getex.md b/iredis/data/commands/getex.md
index 27dfc3d..89ce809 100644
--- a/iredis/data/commands/getex.md
+++ b/iredis/data/commands/getex.md
@@ -1,17 +1,15 @@
-Get the value of `key` and optionally set its expiration. `GETEX` is similar to
-`GET`, but is a write command with additional options.
+Get the value of `key` and optionally set its expiration.
+`GETEX` is similar to `GET`, but is a write command with additional options.
## Options
The `GETEX` command supports a set of options that modify its behavior:
-- `EX` _seconds_ -- Set the specified expire time, in seconds.
-- `PX` _milliseconds_ -- Set the specified expire time, in milliseconds.
-- `EXAT` _timestamp-seconds_ -- Set the specified Unix time at which the key
- will expire, in seconds.
-- `PXAT` _timestamp-milliseconds_ -- Set the specified Unix time at which the
- key will expire, in milliseconds.
-- `PERSIST` -- Remove the time to live associated with the key.
+* `EX` *seconds* -- Set the specified expire time, in seconds.
+* `PX` *milliseconds* -- Set the specified expire time, in milliseconds.
+* `EXAT` *timestamp-seconds* -- Set the specified Unix time at which the key will expire, in seconds.
+* `PXAT` *timestamp-milliseconds* -- Set the specified Unix time at which the key will expire, in milliseconds.
+* `PERSIST` -- Remove the time to live associated with the key.
@return