redis and server | Mar 11, 2016
The CLIENT SETNAME
command assigns a name to the current connection.
redis and server | Mar 11, 2016
Sometimes it can be useful for clients to completely disable replies from the Redis server. For example when the client sends fire and forget commands or performs a mass loading of data, or in caching contexts where new data is streamed constantly. In such contexts to use server time and bandwidth in order to send back replies to clients, which are going to be ignored, is considered wasteful.
More »redis and server | Mar 11, 2016
CLIENT PAUSE
is a connections control command able to suspend all the Redis clients for the specified amount of time (in milliseconds).
redis and server | Mar 11, 2016
The CLIENT LIST
command returns information and statistics about the client
connections server in a mostly human readable format.
redis and server | Mar 11, 2016
The CLIENT KILL
command closes a given client connection. Up to Redis 2.8.11 it was possible to close a connection only by client address, using the following form:
redis and server | Mar 11, 2016
The CLIENT GETNAME
returns the name of the current connection as set by CLIENT SETNAME
. Since every new connection starts without an associated name, if no name was assigned a null bulk reply is returned.