Skip to content

Commit f481860

Browse files
committed
fix: add links to redis commands
1 parent 058710b commit f481860

File tree

11 files changed

+22
-0
lines changed

11 files changed

+22
-0
lines changed

redis/sdks/py/commands/hash/hexpireat.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ description: Sets an expiration time for field(s) in a hash in seconds since the
4242
- `0` if the expiration was not set due to the condition.
4343
- `1` if the expiration was successfully set.
4444
- `2` if called with 0 seconds/milliseconds or a past Unix time.
45+
46+
For more details, see [HEXPIRE documentation](https://redis.io/commands/hexpireat).
4547
</ResponseField>
4648

4749
<RequestExample>

redis/sdks/py/commands/hash/hexpiretime.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ description: Retrieves the expiration time of field(s) in a hash in seconds.
2020

2121
- `-2` if the field does not exist in the hash or if the key doesn't exist.
2222
- `-1` if the field exists but has no associated expiration.
23+
24+
For more details, see [HEXPIRE documentation](https://redis.io/commands/hexpiretime).
2325
</ResponseField>
2426

2527
<RequestExample>

redis/sdks/py/commands/hash/hpexpireat.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ description: Sets an expiration time for field(s) in a hash in milliseconds sinc
4242
- `0` if the expiration was not set due to the condition.
4343
- `1` if the expiration was successfully set.
4444
- `2` if called with 0 seconds/milliseconds or a past Unix time.
45+
46+
For more details, see [HEXPIRE documentation](https://redis.io/commands/hpexpireat).
4547
</ResponseField>
4648

4749
<RequestExample>

redis/sdks/py/commands/hash/hpexpiretime.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ description: Retrieves the expiration time of a field in a hash in milliseconds.
2020

2121
- `-2` if the field does not exist in the hash or if the key doesn't exist.
2222
- `-1` if the field exists but has no associated expiration.
23+
24+
For more details, see [HEXPIRE documentation](https://redis.io/commands/hpexpiretime).
2325
</ResponseField>
2426

2527
<RequestExample>

redis/sdks/py/commands/hash/hpttl.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ description: Retrieves the remaining time-to-live (TTL) for field(s) in a hash i
2020

2121
- `-2` if the field does not exist in the hash or if the key doesn't exist.
2222
- `-1` if the field exists but has no associated expiration.
23+
24+
For more details, see [HEXPIRE documentation](https://redis.io/commands/hpttl).
2325
</ResponseField>
2426

2527
<RequestExample>

redis/sdks/py/commands/hash/httl.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ description: Retrieves the remaining time-to-live (TTL) for field(s) in a hash i
2020

2121
- `-2` if the field does not exist in the hash or if the key doesn't exist.
2222
- `-1` if the field exists but has no associated expiration.
23+
24+
For more details, see [HEXPIRE documentation](https://redis.io/commands/httl).
2325
</ResponseField>
2426

2527
<RequestExample>

redis/sdks/ts/commands/hash/hexpiretime.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ description: Retrieves the expiration time of field(s) in a hash in seconds.
2020

2121
- `-2` if the field does not exist in the hash or if the key doesn't exist.
2222
- `-1` if the field exists but has no associated expiration.
23+
24+
For more details, see [HEXPIRE documentation](https://redis.io/commands/hexpiretime).
2325
</ResponseField>
2426

2527
<RequestExample>

redis/sdks/ts/commands/hash/hpexpire.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ description: Sets an expiration time for a field in a hash in milliseconds.
2323
- `XX`: Set the expiration only if the field already has an expiration.
2424
- `GT`: Set the expiration only if the new TTL is greater than the current TTL.
2525
- `LT`: Set the expiration only if the new TTL is less than the current TTL.
26+
27+
For more details, see [HEXPIRE documentation](https://redis.io/commands/hpexpire).
2628
</ParamField>
2729

2830
## Response

redis/sdks/ts/commands/hash/hpexpiretime.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ description: Retrieves the expiration time of a field in a hash in milliseconds.
2020

2121
- `-2` if the field does not exist in the hash or if the key doesn't exist.
2222
- `-1` if the field exists but has no associated expiration.
23+
24+
For more details, see [HEXPIRE documentation](https://redis.io/commands/hpexpiretime).
2325
</ResponseField>
2426

2527
<RequestExample>

redis/sdks/ts/commands/hash/hpttl.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ description: Retrieves the remaining time-to-live (TTL) for field(s) in a hash i
2020

2121
- `-2` if the field does not exist in the hash or if the key doesn't exist.
2222
- `-1` if the field exists but has no associated expiration.
23+
24+
For more details, see [HEXPIRE documentation](https://redis.io/commands/hpttl).
2325
</ResponseField>
2426

2527
<RequestExample>

0 commit comments

Comments
 (0)