1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
# Redis `connection` commands (11/24 implemented)
## [AUTH](https://redis.io/commands/auth/)
Authenticates the connection.
## [CLIENT GETNAME](https://redis.io/commands/client-getname/)
Returns the name of the connection.
## [CLIENT ID](https://redis.io/commands/client-id/)
Returns the unique client ID of the connection.
## [CLIENT INFO](https://redis.io/commands/client-info/)
Returns information about the connection.
## [CLIENT LIST](https://redis.io/commands/client-list/)
Lists open connections.
## [CLIENT SETINFO](https://redis.io/commands/client-setinfo/)
Sets information specific to the client or connection.
## [CLIENT SETNAME](https://redis.io/commands/client-setname/)
Sets the connection name.
## [ECHO](https://redis.io/commands/echo/)
Returns the given string.
## [HELLO](https://redis.io/commands/hello/)
Handshakes with the Redis server.
## [PING](https://redis.io/commands/ping/)
Returns the server's liveliness response.
## [SELECT](https://redis.io/commands/select/)
Changes the selected database.
## Unsupported connection commands
> To implement support for a command, see [here](/guides/implement-command/)
#### [CLIENT](https://redis.io/commands/client/) <small>(not implemented)</small>
A container for client connection commands.
#### [CLIENT CACHING](https://redis.io/commands/client-caching/) <small>(not implemented)</small>
Instructs the server whether to track the keys in the next request.
#### [CLIENT GETREDIR](https://redis.io/commands/client-getredir/) <small>(not implemented)</small>
Returns the client ID to which the connection's tracking notifications are redirected.
#### [CLIENT KILL](https://redis.io/commands/client-kill/) <small>(not implemented)</small>
Terminates open connections.
#### [CLIENT NO-EVICT](https://redis.io/commands/client-no-evict/) <small>(not implemented)</small>
Sets the client eviction mode of the connection.
#### [CLIENT NO-TOUCH](https://redis.io/commands/client-no-touch/) <small>(not implemented)</small>
Controls whether commands sent by the client affect the LRU/LFU of accessed keys.
#### [CLIENT PAUSE](https://redis.io/commands/client-pause/) <small>(not implemented)</small>
Suspends commands processing.
#### [CLIENT REPLY](https://redis.io/commands/client-reply/) <small>(not implemented)</small>
Instructs the server whether to reply to commands.
#### [CLIENT TRACKING](https://redis.io/commands/client-tracking/) <small>(not implemented)</small>
Controls server-assisted client-side caching for the connection.
#### [CLIENT TRACKINGINFO](https://redis.io/commands/client-trackinginfo/) <small>(not implemented)</small>
Returns information about server-assisted client-side caching for the connection.
#### [CLIENT UNBLOCK](https://redis.io/commands/client-unblock/) <small>(not implemented)</small>
Unblocks a client blocked by a blocking command from a different connection.
#### [CLIENT UNPAUSE](https://redis.io/commands/client-unpause/) <small>(not implemented)</small>
Resumes processing commands from paused clients.
#### [RESET](https://redis.io/commands/reset/) <small>(not implemented)</small>
Resets the connection.
|