Skip to content

Commit df7258b

Browse files
committed
DEV: correct previous merge
1 parent a89f02a commit df7258b

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

content/commands/hgetex/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,17 +88,17 @@ syntax_str: "[EX\_seconds | PX\_milliseconds | EXAT\_unix-time-seconds | PXAT\_u
8888
\ | PERSIST] FIELDS\_numfields field [field ...]"
8989
title: HGETEX
9090
---
91-
Get the value of one or more fields of a given hash key and optionally set their expirations (time-to-live or TTL).
91+
Get the value of one or more fields of a given hash key and optionally set their expiration time or time-to-live (TTL).
9292

9393
## Options
9494

9595
The `HGETEX` command supports a set of options:
9696

9797
* `EX seconds` -- Set the specified expiration time, in seconds.
9898
* `PX milliseconds` -- Set the specified expiration time, in milliseconds.
99-
* `EXAT unix-time-seconds` -- Set the specified Unix time at which the field will expire, in seconds.
100-
* `PXAT unix-time-milliseconds` -- Set the specified Unix time at which the field will expire, in milliseconds.
101-
* `PERSIST` -- Remove the TTL associated with the field.
99+
* `EXAT unix-time-seconds` -- Set the specified Unix time at which the fields will expire, in seconds.
100+
* `PXAT unix-time-milliseconds` -- Set the specified Unix time at which the fields will expire, in milliseconds.
101+
* `PERSIST` -- Remove the TTL associated with the fields.
102102

103103
The `EX`, `PX`, `EXAT`, `PXAT`, and `PERSIST` options are mutually exclusive.
104104

content/commands/hsetex/index.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ syntax_str: "[FNX | FXX] [EX\_seconds | PX\_milliseconds | EXAT\_unix-time-secon
106106
\ value ...]"
107107
title: HSETEX
108108
---
109-
Set the value of one or more fields of a given hash key, and optionally set their expirations (time-to-live or TTL).
109+
Set the value of one or more fields of a given hash key, and optionally set their expiration time or time-to-live (TTL).
110110

111111
## Options
112112

@@ -116,9 +116,9 @@ The `HGETEX` command supports a set of options:
116116
* `FXX` -- Only set the fields if all of them already exist.
117117
* `EX seconds` -- Set the specified expiration time in seconds.
118118
* `PX milliseconds` -- Set the specified expiration time in milliseconds.
119-
* `EXAT unix-time-seconds` -- Set the specified Unix time in seconds at which the field will expire.
120-
* `PXAT unix-time-milliseconds` -- Set the specified Unix time in milliseconds at which the field will expire.
121-
* `KEEPTTL` -- Retain the TTL associated with the field.
119+
* `EXAT unix-time-seconds` -- Set the specified Unix time in seconds at which the fields will expire.
120+
* `PXAT unix-time-milliseconds` -- Set the specified Unix time in milliseconds at which the fields will expire.
121+
* `KEEPTTL` -- Retain the TTL associated with the fields.
122122

123123
The `EX`, `PX`, `EXAT`, `PXAT`, and `KEEPTTL` options are mutually exclusive.
124124

@@ -140,4 +140,3 @@ redis> HTTL mykey FIELDS 2 field1 field2
140140
1) (integer) 55481
141141
2) (integer) 55481
142142
```
143-

data/resp2_replies.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@
573573
"* [Nil reply](../../develop/reference/protocol-spec#bulk-strings): If the field is not present in the hash or key does not exist."
574574
],
575575
"HGETALL": [
576-
"[Array reply](../../develop/reference/protocol-spec#arrays): a list of fields and their values stored in the hash, or an empty list when key does not exist."
576+
"[Array reply](../../develop/reference/protocol-spec#arrays): a list of fields and their values, or an empty list when key does not exist."
577577
],
578578
"HGETDEL": [
579579
"[Array reply](../../develop/reference/protocol-spec#arrays): a list of deleted fields and their values or `nil` for fields that do not exist."

data/resp3_replies.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@
573573
"* [Null reply](../../develop/reference/protocol-spec#nulls): If the field is not present in the hash or key does not exist."
574574
],
575575
"HGETALL": [
576-
"[Map reply](../../develop/reference/protocol-spec#maps): a map of fields and their values stored in the hash, or an empty list when key does not exist."
576+
"[Map reply](../../develop/reference/protocol-spec#maps): a map of fields and their values, or an empty list when key does not exist."
577577
],
578578
"HGETDEL": [
579579
"[Array reply](../../develop/reference/protocol-spec#arrays): a list of deleted fields and their values or `nil` for fields that do not exist."

0 commit comments

Comments
 (0)