From 5543f38d8061d23d24dbfd96d55468c881e04cbf Mon Sep 17 00:00:00 2001 From: Daniel M Date: Sun, 22 Sep 2024 14:13:38 -0400 Subject: [PATCH] doc:update --- docs/redis-commands/Redis.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/redis-commands/Redis.md b/docs/redis-commands/Redis.md index e4bf12d4..279f41fd 100644 --- a/docs/redis-commands/Redis.md +++ b/docs/redis-commands/Redis.md @@ -883,7 +883,7 @@ Stores the union of multiple sorted sets in a key. -## `generic` commands (21/26 implemented) +## `generic` commands (23/26 implemented) ### [DEL](https://redis.io/commands/del/) @@ -905,6 +905,10 @@ Sets the expiration time of a key in seconds. Sets the expiration time of a key to a Unix timestamp. +### [EXPIRETIME](https://redis.io/commands/expiretime/) + +Returns the expiration time of a key as a Unix timestamp. + ### [KEYS](https://redis.io/commands/keys/) Returns all key names that match a pattern. @@ -925,6 +929,10 @@ Sets the expiration time of a key in milliseconds. Sets the expiration time of a key to a Unix milliseconds timestamp. +### [PEXPIRETIME](https://redis.io/commands/pexpiretime/) + +Returns the expiration time of a key as a Unix milliseconds timestamp. + ### [PTTL](https://redis.io/commands/pttl/) Returns the expiration time in milliseconds of a key. @@ -977,14 +985,6 @@ Asynchronously deletes one or more keys. Copies the value of a key to a new key. -#### [EXPIRETIME](https://redis.io/commands/expiretime/) (not implemented) - -Returns the expiration time of a key as a Unix timestamp. - -#### [PEXPIRETIME](https://redis.io/commands/pexpiretime/) (not implemented) - -Returns the expiration time of a key as a Unix milliseconds timestamp. - #### [WAIT](https://redis.io/commands/wait/) (not implemented) Blocks until the asynchronous replication of all preceding write commands sent by the connection is completed.