Skip to content

Commit

Permalink
doc:update
Browse files Browse the repository at this point in the history
  • Loading branch information
cunla committed Sep 22, 2024
1 parent 11c986f commit 5543f38
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions docs/redis-commands/Redis.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/)

Expand All @@ -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.
Expand All @@ -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.
Expand Down Expand Up @@ -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/) <small>(not implemented)</small>

Returns the expiration time of a key as a Unix timestamp.

#### [PEXPIRETIME](https://redis.io/commands/pexpiretime/) <small>(not implemented)</small>

Returns the expiration time of a key as a Unix milliseconds timestamp.

#### [WAIT](https://redis.io/commands/wait/) <small>(not implemented)</small>

Blocks until the asynchronous replication of all preceding write commands sent by the connection is completed.
Expand Down

0 comments on commit 5543f38

Please sign in to comment.