What's new in Valkey 9.0? Discover new features and improvements. Read the announcement.

CLIENT GETREDIR

Returns the client ID to which the connection's tracking notifications are redirected.

Usage
CLIENT GETREDIR
Complexity
O(1)
Since
6.0.0
ACL Categories
@connection, @slow
Command flags
ALLOW_BUSY, NOSCRIPT, LOADING, STALE, SENTINEL

This command returns the client ID we are redirecting our tracking notifications to. We set a client to redirect to when using CLIENT TRACKING to enable tracking. However in order to avoid forcing client libraries implementations to remember the ID notifications are redirected to, this command exists in order to improve introspection and allow clients to check later if redirection is active and towards which client ID.

Replies

RESP2

One of the following:

  • Integer reply: 0 when not redirecting notifications to any client.
  • Integer reply: -1 if client tracking is not enabled.
  • Integer reply: the ID of the client to which notification are being redirected.

RESP3

One of the following:

  • Integer reply: 0 when not redirecting notifications to any client.
  • Integer reply: -1 if client tracking is not enabled.
  • Integer reply: the ID of the client to which notification are being redirected.