You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This command enables the tracking feature of the Redis server, that is used
78
-
for [server assisted client side caching]({{< relref "/develop/use/client-side-caching" >}}).
78
+
for [server assisted client side caching]({{< relref "/develop/connect/clients/client-side-caching#tracking" >}}).
79
79
80
80
When tracking is enabled Redis remembers the keys that the connection
81
81
requested, in order to send later invalidation messages when such keys are
@@ -85,7 +85,7 @@ when the RESP3 protocol is used) or redirected in a different connection
85
85
available where clients participating in this protocol receive every
86
86
notification just subscribing to given key prefixes, regardless of the
87
87
keys that they requested. Given the complexity of the argument please
88
-
refer to [the main client side caching documentation]({{< relref "/develop/use/client-side-caching" >}}) for the details. This manual page is only a reference for the options of this subcommand.
88
+
refer to [the main client side caching documentation]({{< relref "/develop/reference/client-side-caching" >}}) for the details. This manual page is only a reference for the options of this subcommand.
Copy file name to clipboardExpand all lines: content/commands/client-trackinginfo/index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ syntax_fmt: CLIENT TRACKINGINFO
29
29
syntax_str: ''
30
30
title: CLIENT TRACKINGINFO
31
31
---
32
-
The command returns information about the current client connection's use of the [server assisted client side caching]({{< relref "/develop/use/client-side-caching" >}}) feature.
32
+
The command returns information about the current client connection's use of the [server assisted client side caching]({{< relref "/develop/connect/clients/client-side-caching" >}}) feature.
33
33
34
34
Here's the list of tracking information sections and their respective values:
Copy file name to clipboardExpand all lines: content/commands/flushall/index.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,8 +62,11 @@ It is possible to use one of the following modifiers to dictate the flushing mod
62
62
*`ASYNC`: flushes the databases asynchronously
63
63
*`SYNC`: flushes the databases synchronously
64
64
65
-
Note: an asynchronous `FLUSHALL` command only deletes keys that were present at the time the command was invoked. Keys created during an asynchronous flush will be unaffected.
65
+
## Notes
66
+
67
+
* An asynchronous `FLUSHALL` command only deletes keys that were present at the time the command was invoked. Keys created during an asynchronous flush will be unaffected.
68
+
* This command does not delete functions.
66
69
67
70
## Behavior change history
68
71
69
-
*`>= 6.2.0`: Default flush behavior now configurable by the **lazyfree-lazy-user-flush** configuration directive.
72
+
*`>= 6.2.0`: Default flush behavior now configurable by the **lazyfree-lazy-user-flush** configuration directive.
Copy file name to clipboardExpand all lines: content/commands/flushdb/index.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,8 +62,11 @@ It is possible to use one of the following modifiers to dictate the flushing mod
62
62
*`ASYNC`: flushes the database asynchronously
63
63
*`SYNC`: flushes the database synchronously
64
64
65
-
Note: an asynchronous `FLUSHDB` command only deletes keys that were present at the time the command was invoked. Keys created during an asynchronous flush will be unaffected.
65
+
## Notes
66
+
67
+
* An asynchronous `FLUSHDB` command only deletes keys that were present at the time the command was invoked. Keys created during an asynchronous flush will be unaffected.
68
+
* This command does not delete functions.
66
69
67
70
## Behavior change history
68
71
69
-
*`>= 6.2.0`: Default flush behavior now configurable by the **lazyfree-lazy-user-flush** configuration directive.
72
+
*`>= 6.2.0`: Default flush behavior now configurable by the **lazyfree-lazy-user-flush** configuration directive.
0 commit comments