redis: document PING support (#546)

Signed-off-by: Daniel Hochman <danielhochman@users.noreply.github.com>
pull/551/head
Daniel Hochman 7 years ago committed by GitHub
parent f1c7a98b92
commit 47e11810c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      docs/root/intro/arch_overview/redis.rst

@ -58,9 +58,10 @@ Supported commands
At the protocol level, pipelines are supported. MULTI (transaction block) is not. At the protocol level, pipelines are supported. MULTI (transaction block) is not.
Use pipelining wherever possible for the best performance. Use pipelining wherever possible for the best performance.
At the command level, Envoy only supports commands that can be reliably hashed to a server. At the command level, Envoy only supports commands that can be reliably hashed to a server. PING
Therefore, all supported commands contain a key. Supported commands are functionally identical to is the only exception, which Envoy responds to immediately with PONG. Arguments to PING are not
the original Redis command except possibly in failure scenarios. allowed. All other supported commands must contain a key. Supported commands are functionally
identical to the original Redis command except possibly in failure scenarios.
For details on each command's usage see the official For details on each command's usage see the official
`Redis command reference <https://redis.io/commands>`_. `Redis command reference <https://redis.io/commands>`_.
@ -69,6 +70,7 @@ For details on each command's usage see the official
:header: Command, Group :header: Command, Group
:widths: 1, 1 :widths: 1, 1
PING, Connection
DEL, Generic DEL, Generic
DUMP, Generic DUMP, Generic
EXISTS, Generic EXISTS, Generic

Loading…
Cancel
Save