sabbey37 commented on a change in pull request #6239:
URL: https://github.com/apache/geode/pull/6239#discussion_r607218621



##########
File path: geode-docs/tools_modules/geode_apis_compatible_with_redis.html.md.erb
##########
@@ -64,52 +64,65 @@ If the server is functioning properly, you should see a 
response of `PONG`.
 
 ## <a id="supported-commands" class="no-quick-link"></a>Supported Redis 
Commands
 
-The <%=vars.product_name%> APIs compatible with Redis currently supports the 
following Redis commands.  See [Redis commands](https://redis.io/commands/) for 
a complete list of and more information on Redis commands.
+The <%=vars.product_name%> APIs compatible with Redis currently supports the 
following Redis commands.
+- APPEND
+- AUTH
+- DECR
+- DECRBY
+- DEL
+- EXISTS
+- EXPIRE
+- EXPIREAT
+- GET
+- GETRANGE
+- HDEL
+- HEXISTS
+- HGET
+- HGETALL
+- HINCRBY
+- HINCRBYFLOAT
+- HLEN
+- HMGET
+- HMSET
+- HSCAN
+- HSET
+- HSETNX
+- HSTRLEN
+- HVALS
+- HKEYS
+- INCR
+- INCRBY
+- INCRBYFLOAT
+- INFO
+- KEYS
+- MGET
+- PERSIST
+- PEXPIRE
+- PEXPIREAT
+- PING
+- PSUBSCRIBE
+- PTTL
+- PUBLISH
+- PUNSUBSCRIBE
+- QUIT
+- RENAME
+- SADD
+- SET
+- SETNX
+- SLOWLOG <sup>1</sup>
+- SMEMBERS
+- SREM
+- STRLEN
+- SUBSCRIBE
+- TTL
+- TYPE
+- UNSUBSCRIBE
 
-**Note**: These commands are supported for Redis 5.
-**Note**: SLOWLOG is implemented as a NoOp for compatibility with some 
monitoring tools.
-
--   **Connection**: AUTH, PING, QUIT
--   **Hashes**: HDEL, HEXISTS, HGET, HGETALL, HINCRBY, HINCRBYFLOAT, HKEYS, 
HLEN, HMGET, HMSET, HSCAN, HSET, HSETNX, HSTRLEN, HVALS
--   **Keys**: DEL, EXISTS, EXPIRE, EXPIREAT, KEYS, PERSIST, PEXPIRE, 
PEXPIREAT, PTTL, RENAME, TTL,
-  TYPE
--   **Publish/Subscribe**: PUBLISH, PSUBSCRIBE, PUNSUBSCRIBE, SUBSCRIBE, 
UNSUBSCRIBE
--   **Server**: SLOWLOG, INFO
--   **Sets**: SADD, SMEMBERS, SREM
--   **Strings**: APPEND, DECR, DECRBY, GET, GETRANGE, INCR, INCRBY, 
INCRBYFLOAT, MGET, SET, SETNX, STRLEN
-
-The following Redis commands are **unsupported** by <%=vars.produce_name%>'s 
APIs compatible with Redis. Unsupported
-commands are available to use, but have not been fully tested. There is no 
guarantee they will work
-exactly as expected.
-
--   **Connection**: ECHO, SELECT
--   **Keys**: SCAN, UNLINK
--   **Server**: DBSIZE, FLUSHALL (no async option), FLUSHDB (no async option), 
SHUTDOWN, TIME
--   **Sets**: SCARD, SDIFF, SDIFFSTORE, SINTER, SINTERSTORE, SISMEMBER, SMOVE, 
SPOP, SRANDMEMBER,
-  SSCAN, SUNION, SUNIONSTORE
--   **Strings**: BITCOUNT, BITOP, BITPOS, GETBIT, GETSET, MSET, MSETNX, 
PSETEX, SETBIT, SETEX, SETRANGE
-
-
-If you already have some Geode servers running that are compatible with Redis, 
you can execute the
-following command with gfsh to enable unsupported commands:
-
-```pre
-redis --enable-unsupported-commands
-```
-
-You can also enable unsupported commands when you start the Geode server by 
setting the Java property `enable-redis-unsupported-commands=true`:
+Commands not listed above are **not implemented**.
 
-```pre
-start server \
-  --J=-Denable-redis-unsupported-commands=true \
-  --name=<serverName> \
-  --locators=<locatorPort> \
-  --compatible-with-redis-port=<compatibleWithRedisPort> \
-  --compatible-with-redis-bind-address=<compatibleWithRedisBindAddress> \
-  --compatible-with-redis-password=<compatibleWithRedisPassword>
-```
+**Note**: These commands are supported for Redis 5.
 
-Commands not listed above are **not implemented**.
+**Note**: SLOWLOG is implemented as a NoOp for compatibility with some 
monitoring tools.

Review comment:
       Since we added the superscript in the list above, should we add it here 
as well? 

##########
File path: geode-redis/README.md
##########
@@ -128,210 +128,98 @@ not connected>
 ```
 ### <a name="redis-commands"></a>Redis Commands
 
-The Geode APIs compatible with Redis currently implements a subset of the full 
Redis command set. Some commands
-are **unsupported** (see table below). Unsupported commands are available to 
use, but have not been
-fully tested. There is no guarantee they will work exactly as expected.
-
-#### <a name="enable-unsupported-commands"></a>Enabling Unsupported Commands
-
-If you already have Geode servers running with Redis enabled, you can execute 
the following
-command with gfsh to enable unsupported commands:
-
-```pre
-redis --enable-unsupported-commands
-```
-
-You can also enable unsupported commands when you start the Geode server by 
setting the Java property `enable-redis-unsupported-commands=true`:
-
-```pre
-start server \
-  --J=-Denable-redis-unsupported-commands=true \
-  --name=<serverName> \
-  --locators=<locatorPort> \
-  --compatible-with-redis-port=<redisPort> \
-  --compatible-with-redis-bind-address=<redisBindAddress> \
-  --compatible-with-redis-password=<redisPassword>
-```
-
-#### <a name="redis-command-status"></a>Redis Command Status [Return to 
top](#introduction)
-
-| Supported Commands   | Unsupported Commands<br>(Implemented - not tested)    
|    Commands Not Implemented           |
-|-----------------------|-------------------------------------------------------|-----------------------------------|
-| APPEND               | BITCOUNT                                              
| ACL CAT                               |
-| AUTH                 | BITOP                                                 
| ACL DELUSER                           |
-| DECRBY               | BITPOS                                                
| ACL GENPASS                           |
-| DEL                  | DBSIZE                                                
| ACL GETUSER                           |
-| EXISTS               | DECR                                                  
| ACL HELP                              |
-| EXPIRE               | ECHO                                                  
| ACL LIST                              |
-| EXPIREAT             | FLUSHALL                                              
| ACL LOAD                              |
-| GET                  | FLUSHDB                                               
| ACL LOG                               |
-| HGETALL                      | GETBIT                                        
        | ACL SAVE                              |
-| HMGET                | GETRANGE                                              
| ACL SETUSER                           |
-| HMSET                | GETSET                                                
| ACL USERS                             |
-| HSET                         | HDEL                                          
        | ACL WHOAMI                            |
-| HSETNX               | HEXISTS                                               
| BGREWRITEAOF                          |
-| HSTRLEN                      | HGET                                          
        | BGSAVE                                |
-| HLEN                 | HINCRBY                                               
| BITFIELD                              |
-| HVALS                | HINCRBYFLOAT                                          
| BLPOP                                 |
-| INFO                 | HKEYS                                                 
| BRPOP                                 |
-| KEYS                 | HSCAN                                                 
| BRPOPLPUSH                            |
-| PERSIST              | INCR                                                  
| BZPOPMAX                              |
-| PEXPIRE              | INCRBY                                                
| BZPOPMIN                              |
-| PEXPIREAT            | INCRBYFLOAT                                           
| CLIENT CACHING                        |
-| PING                 | MGET                                                  
| CLIENT GETNAME                        |
-| PSUBSCRIBE           | MSET                                                  
| CLIENT ID                             |
-| PTTL                 | MSETNX                                                
| CLIENT KILL                           |
-| PUNSUBSCRIBE         | PSETEX                                                
| CLIENT LIST                           |
-| QUIT                 | SCAN                                                  
| CLIENT PAUSE                          |
-| RENAME               | SCARD                                                 
| CLIENT REPLY                          |
-| SADD                 | SDIFF                                                 
| CLIENT SETNAME                        |
-| SET                   | SDIFFSTORE                                           
| CLIENT TRACKING                       |
-| SLOWLOG[2]            | SELECT                                               
| CLIENT UNBLOCK                        |
-| SMEMBERS              | SETBIT                                               
| CLUSTER ADDSLOTS                      |
-| SREM                  | SETEX                                                
| CLUSTER BUMPEPOCH                     |
-| SUBSCRIBE             | SETNX                                                
| CLUSTER COUNT-FAILURE-REPORTS         |
-| TTL                   | SETRANGE                                             
| CLUSTER COUNTKEYSINSLOT               |
-| TYPE                         | SHUTDOWN                                      
        | CLUSTER DELSLOTS                  |
-| UNSUBSCRIBE           | SINTER                                               
| CLUSTER FAILOVER                      |
-| PUBLISH               | SINTERSTORE                                          
| CLUSTER FLUSHSLOTS                |
-|                      | SISMEMBER                                             
| CLUSTER FORGET                    |
-|                      | SLOWLOG                                               
| CLUSTER GETKEYSINSLOT             |
-|                      | SMOVE                                                 
| CLUSTER INFO                          |
-|                      | SPOP                                                  
| CLUSTER KEYSLOT                   |
-|                      | SRANDMEMBER                                           
| CLUSTER MEET                      |
-|                      | SSCAN                                                 
| CLUSTER MYID                          |
-|                      | STRLEN                                                
| CLUSTER NODES                         |
-|                      | SUNION                                                
| CLUSTER REPLICAS                  |
-|                      | SUNIONSTORE                                           
| CLUSTER REPLICATE                     |
-|                      | TIME                                                  
| CLUSTER RESET                         |
-|                      | UNLINK [1]                                            
| CLUSTER SAVECONFIG                |
-|                      |                                                       
| CLUSTER SET-CONFIG-EPOCH          |
-|                      |                                                       
    | CLUSTER SETSLOT                   |
-|                      |                                                       
    | CLIENT GETREDIR                   |
-|                      |                                                       
| CLUSTER SLAVES                    |
-|                      |                                                       
| CLUSTER SLOTS                         |
-|                      |                                                       
| COMMAND                               |
-|                      |                                                       
| COMMAND COUNT                         |
-|                      |                                                       
| COMMAND GETKEYS                       |
-|                      |                                                       
| COMMAND INFO                          |
-|                      |                                                       
| CONFIG GET                            |
-|                      |                                                       
| CONFIG RESETSTAT                      |
-|                      |                                                       
| CONFIG REWRITE                        |
-|                      |                                                       
| CONFIG SET                            |
-|                      |                                                       
| DEBUG OBJECT                          |
-|                      |                                                       
| DEBUG SEGFAULT                        |
-|                      |                                                       
| DISCARD                               |
-|                      |                                                       
| DUMP                                  |
-|                      |                                                       
| EVAL                                  |
-|                      |                                                       
| EVALSHA                               |
-|                      |                                                       
| EXEC                                  |
-|                      |                                                       
| GEOADD                                |
-|                      |                                                       
| GEODIST                               |
-|                      |                                                       
| GEOHASH                               |
-|                      |                                                       
| GEOPOS                                |
-|                      |                                                       
| GEORADIUS                             |
-|                      |                                                       
| GEORADIUSBYMEMBER                     |
-|                      |                                                       
| LASTSAVE                              |
-|                      |                                                       
| LATENCY DOCTOR                        |
-|                      |                                                       
| LATENCY GRAPH                         |
-|                      |                                                       
| LATENCY HELP                          |
-|                      |                                                       
| LATENCY HISTORY                       |
-|                      |                                                       
| LATENCY LATEST                        |
-|                      |                                                       
| LATENCY RESET                         |
-|                      |                                                       
| LINDEX                                |
-|                      |                                                       
| LINSERT                               |
-|                      |                                                       
| LLEN                                  |
-|                      |                                                       
| LOLWUT                                |
-|                      |                                                       
| LPOP                                  |
-|                      |                                                       
| LPOS                                  |
-|                      |                                                       
| LPUSH                                 |
-|                      |                                                       
| LPUSHX                                |
-|                      |                                                       
| LRANGE                                |
-|                      |                                                       
| LREM                                  |
-|                      |                                                       
| LSET                                  |
-|                      |                                                       
| LTRIM                                 |
-|                      |                                                       
| MEMORY DOCTOR                         |
-|                      |                                                       
| MEMORY HELP                           |
-|                      |                                                       
| MEMORY MALLOC-STATS                   |
-|                      |                                                       
| MEMORY PURGE                          |
-|                      |                                                       
| MEMORY STATS                          |
-|                      |                                                       
| MEMORY USAGE                          |
-|                      |                                                       
| MIGRATE                               |
-|                      |                                                       
| MODULE LIST                           |
-|                      |                                                       
| MODULE LOAD                           |
-|                      |                                                       
| MODULE UNLOAD                         |
-|                      |                                                       
| MONITOR                               |
-|                      |                                                       
| MOVE                                  |
-|                      |                                                       
| MULTI                                 |
-|                      |                                                       
| OBJECT                                |
-|                      |                                                       
| PFADD                                 |
-|                      |                                                       
| PFCOUNT                               |
-|                      |                                                       
| PFMERGE                               |
-|                      |                                                       
| PSYNC                                 |
-|                      |                                                       
| PUBSUB                                |
-|                      |                                                       
| RANDOMKEY                             |
-|                      |                                                       
| READONLY                              |
-|                      |                                                       
| READWRITE                             |
-|                      |                                                       
| RENAMENX                              |
-|                      |                                                       
| REPLICAOF                             |
-|                      |                                                       
| RESTORE                               |
-|                      |                                                       
| ROLE                                  |
-|                      |                                                       
| RPOP                                  |
-|                      |                                                       
| RPOPLPUSH                             |
-|                      |                                                       
| RPUSH                                 |
-|                      |                                                       
| RPUSHX                                |
-|                      |                                                       
| SAVE                                  |
-|                      |                                                       
| SCRIPT DEBUG                          |
-|                      |                                                       
| SCRIPT EXISTS                         |
-|                      |                                                       
| SCRIPT FLUSH                          |
-|                      |                                                       
| SCRIPT KILL                           |
-|                      |                                                       
| SCRIPT LOAD                           |
-|                      |                                                       
| SLAVEOF                               |
-|                      |                                                       
| SORT                                  |
-|                      |                                                       
| STRALGO LCS                           |
-|                      |                                                       
| SWAPDB                                |
-|                      |                                                       
| SYNC                                  |
-|                      |                                                       
| TOUCH                                 |
-|                      |                                                       
| UNWATCH                               |
-|                      |                                                       
| WAIT                                  |
-|                      |                                                       
| WATCH                                 |
-|                      |                                                       
| XACK                                  |
-|                      |                                                       
| XADD                                  |
-|                      |                                                       
| XCLAIM                                |
-|                      |                                                       
| XDEL                                  |
-|                      |                                                       
| XGROUP                                |
-|                      |                                                       
| XINFO                                 |
-|                      |                                                       
| XLEN                                  |
-|                      |                                                       
| XPENDING                              |
-|                      |                                                       
| XRANGE                                |
-|                      |                                                       
| XREAD                                 |
-|                      |                                                       
| XREADGROUP GROUP                      |
-|                      |                                                       
| XREVRANGE                             |
-|                      |                                                       
| XTRIM                                 |
-|                      |                                                       
| ZADD                                  |
-|                      |                                                       
| ZCARD                                 |
-|                      |                                                       
| ZCOUNT                                |
-|                      |                                                       
| ZINCRBY                               |
-|                      |                                                       
| ZINTERSTORE                           |
-|                      |                                                       
| ZLEXCOUNT                             |
-|                      |                                                       
| ZPOPMAX                               |
-|                      |                                                       
| ZPOPMIN                               |
-|                      |                                                       
| ZRANGE                                |
-|                      |                                                       
| ZRANGEBYLEX                           |
-|                      |                                                       
| ZRANGEBYSCORE                         |
-|                      |                                                       
| ZRANK                                 |
-|                      |                                                       
| ZREM                                  |
-|                      |                                                       
| ZREMRANGEBYLEX                        |
-|                      |                                                       
| ZREMRANGEBYRANK                       |
-|                      |                                                       
| ZREMRANGEBYSCORE                      |
-|                      |                                                       
| ZREVRANGE                             |
-|                      |                                                       
| ZREVRANGEBYSCORE                      |
-|                      |                                                       
| ZREVRANK                              |
-|                      |                                                       
| ZSCAN                                 |
-|                      |                                                       
| ZSCORE                                |
-|                      |                                                       
| ZUNIONSTORE                           |                       |
-
-**NOTES:**
-
-[1] - UNLINK is implemented as a synonym to DEL and does not unlink 
asynchronously.
-[2] - SLOWLOG is implemented as a NoOp.
+The Geode APIs compatible with Redis implement a subset of the full Redis 
command set.
+
+#### <a name="supported-redis-commands"></a> Supported Redis Commands [Return 
to top](#introduction)
+- APPEND 
+- AUTH
+- DECR
+- DECRBY
+- DEL
+- EXISTS
+- EXPIRE
+- EXPIREAT
+- GET
+- GETRANGE
+- HDEL
+- HEXISTS
+- HGET
+- HGETALL
+- HINCRBY
+- HINCRBYFLOAT
+- HLEN
+- HMGET
+- HMSET
+- HSCAN
+- HSET
+- HSETNX
+- HSTRLEN
+- HVALS
+- HKEYS
+- INCR
+- INCRBY
+- INCRBYFLOAT
+- INFO <sup>1</sup>
+- KEYS
+- MGET
+- PERSIST
+- PEXPIRE
+- PEXPIREAT
+- PING
+- PSUBSCRIBE
+- PTTL
+- PUBLISH
+- PUNSUBSCRIBE
+- QUIT
+- RENAME
+- SADD
+- SET
+- SETNX
+- SLOWLOG <sup>2</sup>
+- SMEMBERS
+- SREM
+- STRLEN
+- SUBSCRIBE
+- TTL
+- TYPE
+- UNSUBSCRIBE
+
+**NOTES:** <br/>
+<sup>1</sup> INFO is implemented for the sections and fields listed below:

Review comment:
       However we ultimately decide to format the `INFO` note, could we also 
add it to the Notes section below the commands in 
`geode_apis_compatible_with_redis.html.md.erb`?

##########
File path: geode-redis/README.md
##########
@@ -128,210 +128,98 @@ not connected>
 ```
 ### <a name="redis-commands"></a>Redis Commands
 
-The Geode APIs compatible with Redis currently implements a subset of the full 
Redis command set. Some commands
-are **unsupported** (see table below). Unsupported commands are available to 
use, but have not been
-fully tested. There is no guarantee they will work exactly as expected.
-
-#### <a name="enable-unsupported-commands"></a>Enabling Unsupported Commands
-
-If you already have Geode servers running with Redis enabled, you can execute 
the following
-command with gfsh to enable unsupported commands:
-
-```pre
-redis --enable-unsupported-commands
-```
-
-You can also enable unsupported commands when you start the Geode server by 
setting the Java property `enable-redis-unsupported-commands=true`:
-
-```pre
-start server \
-  --J=-Denable-redis-unsupported-commands=true \
-  --name=<serverName> \
-  --locators=<locatorPort> \
-  --compatible-with-redis-port=<redisPort> \
-  --compatible-with-redis-bind-address=<redisBindAddress> \
-  --compatible-with-redis-password=<redisPassword>
-```
-
-#### <a name="redis-command-status"></a>Redis Command Status [Return to 
top](#introduction)
-
-| Supported Commands   | Unsupported Commands<br>(Implemented - not tested)    
|    Commands Not Implemented           |
-|-----------------------|-------------------------------------------------------|-----------------------------------|
-| APPEND               | BITCOUNT                                              
| ACL CAT                               |
-| AUTH                 | BITOP                                                 
| ACL DELUSER                           |
-| DECRBY               | BITPOS                                                
| ACL GENPASS                           |
-| DEL                  | DBSIZE                                                
| ACL GETUSER                           |
-| EXISTS               | DECR                                                  
| ACL HELP                              |
-| EXPIRE               | ECHO                                                  
| ACL LIST                              |
-| EXPIREAT             | FLUSHALL                                              
| ACL LOAD                              |
-| GET                  | FLUSHDB                                               
| ACL LOG                               |
-| HGETALL                      | GETBIT                                        
        | ACL SAVE                              |
-| HMGET                | GETRANGE                                              
| ACL SETUSER                           |
-| HMSET                | GETSET                                                
| ACL USERS                             |
-| HSET                         | HDEL                                          
        | ACL WHOAMI                            |
-| HSETNX               | HEXISTS                                               
| BGREWRITEAOF                          |
-| HSTRLEN                      | HGET                                          
        | BGSAVE                                |
-| HLEN                 | HINCRBY                                               
| BITFIELD                              |
-| HVALS                | HINCRBYFLOAT                                          
| BLPOP                                 |
-| INFO                 | HKEYS                                                 
| BRPOP                                 |
-| KEYS                 | HSCAN                                                 
| BRPOPLPUSH                            |
-| PERSIST              | INCR                                                  
| BZPOPMAX                              |
-| PEXPIRE              | INCRBY                                                
| BZPOPMIN                              |
-| PEXPIREAT            | INCRBYFLOAT                                           
| CLIENT CACHING                        |
-| PING                 | MGET                                                  
| CLIENT GETNAME                        |
-| PSUBSCRIBE           | MSET                                                  
| CLIENT ID                             |
-| PTTL                 | MSETNX                                                
| CLIENT KILL                           |
-| PUNSUBSCRIBE         | PSETEX                                                
| CLIENT LIST                           |
-| QUIT                 | SCAN                                                  
| CLIENT PAUSE                          |
-| RENAME               | SCARD                                                 
| CLIENT REPLY                          |
-| SADD                 | SDIFF                                                 
| CLIENT SETNAME                        |
-| SET                   | SDIFFSTORE                                           
| CLIENT TRACKING                       |
-| SLOWLOG[2]            | SELECT                                               
| CLIENT UNBLOCK                        |
-| SMEMBERS              | SETBIT                                               
| CLUSTER ADDSLOTS                      |
-| SREM                  | SETEX                                                
| CLUSTER BUMPEPOCH                     |
-| SUBSCRIBE             | SETNX                                                
| CLUSTER COUNT-FAILURE-REPORTS         |
-| TTL                   | SETRANGE                                             
| CLUSTER COUNTKEYSINSLOT               |
-| TYPE                         | SHUTDOWN                                      
        | CLUSTER DELSLOTS                  |
-| UNSUBSCRIBE           | SINTER                                               
| CLUSTER FAILOVER                      |
-| PUBLISH               | SINTERSTORE                                          
| CLUSTER FLUSHSLOTS                |
-|                      | SISMEMBER                                             
| CLUSTER FORGET                    |
-|                      | SLOWLOG                                               
| CLUSTER GETKEYSINSLOT             |
-|                      | SMOVE                                                 
| CLUSTER INFO                          |
-|                      | SPOP                                                  
| CLUSTER KEYSLOT                   |
-|                      | SRANDMEMBER                                           
| CLUSTER MEET                      |
-|                      | SSCAN                                                 
| CLUSTER MYID                          |
-|                      | STRLEN                                                
| CLUSTER NODES                         |
-|                      | SUNION                                                
| CLUSTER REPLICAS                  |
-|                      | SUNIONSTORE                                           
| CLUSTER REPLICATE                     |
-|                      | TIME                                                  
| CLUSTER RESET                         |
-|                      | UNLINK [1]                                            
| CLUSTER SAVECONFIG                |
-|                      |                                                       
| CLUSTER SET-CONFIG-EPOCH          |
-|                      |                                                       
    | CLUSTER SETSLOT                   |
-|                      |                                                       
    | CLIENT GETREDIR                   |
-|                      |                                                       
| CLUSTER SLAVES                    |
-|                      |                                                       
| CLUSTER SLOTS                         |
-|                      |                                                       
| COMMAND                               |
-|                      |                                                       
| COMMAND COUNT                         |
-|                      |                                                       
| COMMAND GETKEYS                       |
-|                      |                                                       
| COMMAND INFO                          |
-|                      |                                                       
| CONFIG GET                            |
-|                      |                                                       
| CONFIG RESETSTAT                      |
-|                      |                                                       
| CONFIG REWRITE                        |
-|                      |                                                       
| CONFIG SET                            |
-|                      |                                                       
| DEBUG OBJECT                          |
-|                      |                                                       
| DEBUG SEGFAULT                        |
-|                      |                                                       
| DISCARD                               |
-|                      |                                                       
| DUMP                                  |
-|                      |                                                       
| EVAL                                  |
-|                      |                                                       
| EVALSHA                               |
-|                      |                                                       
| EXEC                                  |
-|                      |                                                       
| GEOADD                                |
-|                      |                                                       
| GEODIST                               |
-|                      |                                                       
| GEOHASH                               |
-|                      |                                                       
| GEOPOS                                |
-|                      |                                                       
| GEORADIUS                             |
-|                      |                                                       
| GEORADIUSBYMEMBER                     |
-|                      |                                                       
| LASTSAVE                              |
-|                      |                                                       
| LATENCY DOCTOR                        |
-|                      |                                                       
| LATENCY GRAPH                         |
-|                      |                                                       
| LATENCY HELP                          |
-|                      |                                                       
| LATENCY HISTORY                       |
-|                      |                                                       
| LATENCY LATEST                        |
-|                      |                                                       
| LATENCY RESET                         |
-|                      |                                                       
| LINDEX                                |
-|                      |                                                       
| LINSERT                               |
-|                      |                                                       
| LLEN                                  |
-|                      |                                                       
| LOLWUT                                |
-|                      |                                                       
| LPOP                                  |
-|                      |                                                       
| LPOS                                  |
-|                      |                                                       
| LPUSH                                 |
-|                      |                                                       
| LPUSHX                                |
-|                      |                                                       
| LRANGE                                |
-|                      |                                                       
| LREM                                  |
-|                      |                                                       
| LSET                                  |
-|                      |                                                       
| LTRIM                                 |
-|                      |                                                       
| MEMORY DOCTOR                         |
-|                      |                                                       
| MEMORY HELP                           |
-|                      |                                                       
| MEMORY MALLOC-STATS                   |
-|                      |                                                       
| MEMORY PURGE                          |
-|                      |                                                       
| MEMORY STATS                          |
-|                      |                                                       
| MEMORY USAGE                          |
-|                      |                                                       
| MIGRATE                               |
-|                      |                                                       
| MODULE LIST                           |
-|                      |                                                       
| MODULE LOAD                           |
-|                      |                                                       
| MODULE UNLOAD                         |
-|                      |                                                       
| MONITOR                               |
-|                      |                                                       
| MOVE                                  |
-|                      |                                                       
| MULTI                                 |
-|                      |                                                       
| OBJECT                                |
-|                      |                                                       
| PFADD                                 |
-|                      |                                                       
| PFCOUNT                               |
-|                      |                                                       
| PFMERGE                               |
-|                      |                                                       
| PSYNC                                 |
-|                      |                                                       
| PUBSUB                                |
-|                      |                                                       
| RANDOMKEY                             |
-|                      |                                                       
| READONLY                              |
-|                      |                                                       
| READWRITE                             |
-|                      |                                                       
| RENAMENX                              |
-|                      |                                                       
| REPLICAOF                             |
-|                      |                                                       
| RESTORE                               |
-|                      |                                                       
| ROLE                                  |
-|                      |                                                       
| RPOP                                  |
-|                      |                                                       
| RPOPLPUSH                             |
-|                      |                                                       
| RPUSH                                 |
-|                      |                                                       
| RPUSHX                                |
-|                      |                                                       
| SAVE                                  |
-|                      |                                                       
| SCRIPT DEBUG                          |
-|                      |                                                       
| SCRIPT EXISTS                         |
-|                      |                                                       
| SCRIPT FLUSH                          |
-|                      |                                                       
| SCRIPT KILL                           |
-|                      |                                                       
| SCRIPT LOAD                           |
-|                      |                                                       
| SLAVEOF                               |
-|                      |                                                       
| SORT                                  |
-|                      |                                                       
| STRALGO LCS                           |
-|                      |                                                       
| SWAPDB                                |
-|                      |                                                       
| SYNC                                  |
-|                      |                                                       
| TOUCH                                 |
-|                      |                                                       
| UNWATCH                               |
-|                      |                                                       
| WAIT                                  |
-|                      |                                                       
| WATCH                                 |
-|                      |                                                       
| XACK                                  |
-|                      |                                                       
| XADD                                  |
-|                      |                                                       
| XCLAIM                                |
-|                      |                                                       
| XDEL                                  |
-|                      |                                                       
| XGROUP                                |
-|                      |                                                       
| XINFO                                 |
-|                      |                                                       
| XLEN                                  |
-|                      |                                                       
| XPENDING                              |
-|                      |                                                       
| XRANGE                                |
-|                      |                                                       
| XREAD                                 |
-|                      |                                                       
| XREADGROUP GROUP                      |
-|                      |                                                       
| XREVRANGE                             |
-|                      |                                                       
| XTRIM                                 |
-|                      |                                                       
| ZADD                                  |
-|                      |                                                       
| ZCARD                                 |
-|                      |                                                       
| ZCOUNT                                |
-|                      |                                                       
| ZINCRBY                               |
-|                      |                                                       
| ZINTERSTORE                           |
-|                      |                                                       
| ZLEXCOUNT                             |
-|                      |                                                       
| ZPOPMAX                               |
-|                      |                                                       
| ZPOPMIN                               |
-|                      |                                                       
| ZRANGE                                |
-|                      |                                                       
| ZRANGEBYLEX                           |
-|                      |                                                       
| ZRANGEBYSCORE                         |
-|                      |                                                       
| ZRANK                                 |
-|                      |                                                       
| ZREM                                  |
-|                      |                                                       
| ZREMRANGEBYLEX                        |
-|                      |                                                       
| ZREMRANGEBYRANK                       |
-|                      |                                                       
| ZREMRANGEBYSCORE                      |
-|                      |                                                       
| ZREVRANGE                             |
-|                      |                                                       
| ZREVRANGEBYSCORE                      |
-|                      |                                                       
| ZREVRANK                              |
-|                      |                                                       
| ZSCAN                                 |
-|                      |                                                       
| ZSCORE                                |
-|                      |                                                       
| ZUNIONSTORE                           |                       |
-
-**NOTES:**
-
-[1] - UNLINK is implemented as a synonym to DEL and does not unlink 
asynchronously.
-[2] - SLOWLOG is implemented as a NoOp.
+The Geode APIs compatible with Redis implement a subset of the full Redis 
command set.
+
+#### <a name="supported-redis-commands"></a> Supported Redis Commands [Return 
to top](#introduction)
+- APPEND 
+- AUTH
+- DECR
+- DECRBY
+- DEL
+- EXISTS
+- EXPIRE
+- EXPIREAT
+- GET
+- GETRANGE
+- HDEL
+- HEXISTS
+- HGET
+- HGETALL
+- HINCRBY
+- HINCRBYFLOAT
+- HLEN
+- HMGET
+- HMSET
+- HSCAN
+- HSET
+- HSETNX
+- HSTRLEN
+- HVALS
+- HKEYS
+- INCR
+- INCRBY
+- INCRBYFLOAT
+- INFO <sup>1</sup>
+- KEYS
+- MGET
+- PERSIST
+- PEXPIRE
+- PEXPIREAT
+- PING
+- PSUBSCRIBE
+- PTTL
+- PUBLISH
+- PUNSUBSCRIBE
+- QUIT
+- RENAME
+- SADD
+- SET
+- SETNX
+- SLOWLOG <sup>2</sup>
+- SMEMBERS
+- SREM
+- STRLEN
+- SUBSCRIBE
+- TTL
+- TYPE
+- UNSUBSCRIBE
+
+**NOTES:** <br/>
+<sup>1</sup> INFO is implemented for the sections and fields listed below:
+ - clients
+    - connected_clients
+    - blocked_clients (will always return 0)
+ - cluster
+    - cluster_enables (will always return 0)
+ - keyspace
+    - returns stats for db: 0

Review comment:
       Not sure if we want to mention that it will return `keys`, but `expires` 
and `avg_ttl` will always be 0? Also, it seems to be referenced in Redis docs 
and the keyspace section as `db0`.

##########
File path: geode-redis/README.md
##########
@@ -128,210 +128,98 @@ not connected>
 ```
 ### <a name="redis-commands"></a>Redis Commands
 
-The Geode APIs compatible with Redis currently implements a subset of the full 
Redis command set. Some commands
-are **unsupported** (see table below). Unsupported commands are available to 
use, but have not been
-fully tested. There is no guarantee they will work exactly as expected.
-
-#### <a name="enable-unsupported-commands"></a>Enabling Unsupported Commands
-
-If you already have Geode servers running with Redis enabled, you can execute 
the following
-command with gfsh to enable unsupported commands:
-
-```pre
-redis --enable-unsupported-commands
-```
-
-You can also enable unsupported commands when you start the Geode server by 
setting the Java property `enable-redis-unsupported-commands=true`:
-
-```pre
-start server \
-  --J=-Denable-redis-unsupported-commands=true \
-  --name=<serverName> \
-  --locators=<locatorPort> \
-  --compatible-with-redis-port=<redisPort> \
-  --compatible-with-redis-bind-address=<redisBindAddress> \
-  --compatible-with-redis-password=<redisPassword>
-```
-
-#### <a name="redis-command-status"></a>Redis Command Status [Return to 
top](#introduction)
-
-| Supported Commands   | Unsupported Commands<br>(Implemented - not tested)    
|    Commands Not Implemented           |
-|-----------------------|-------------------------------------------------------|-----------------------------------|
-| APPEND               | BITCOUNT                                              
| ACL CAT                               |
-| AUTH                 | BITOP                                                 
| ACL DELUSER                           |
-| DECRBY               | BITPOS                                                
| ACL GENPASS                           |
-| DEL                  | DBSIZE                                                
| ACL GETUSER                           |
-| EXISTS               | DECR                                                  
| ACL HELP                              |
-| EXPIRE               | ECHO                                                  
| ACL LIST                              |
-| EXPIREAT             | FLUSHALL                                              
| ACL LOAD                              |
-| GET                  | FLUSHDB                                               
| ACL LOG                               |
-| HGETALL                      | GETBIT                                        
        | ACL SAVE                              |
-| HMGET                | GETRANGE                                              
| ACL SETUSER                           |
-| HMSET                | GETSET                                                
| ACL USERS                             |
-| HSET                         | HDEL                                          
        | ACL WHOAMI                            |
-| HSETNX               | HEXISTS                                               
| BGREWRITEAOF                          |
-| HSTRLEN                      | HGET                                          
        | BGSAVE                                |
-| HLEN                 | HINCRBY                                               
| BITFIELD                              |
-| HVALS                | HINCRBYFLOAT                                          
| BLPOP                                 |
-| INFO                 | HKEYS                                                 
| BRPOP                                 |
-| KEYS                 | HSCAN                                                 
| BRPOPLPUSH                            |
-| PERSIST              | INCR                                                  
| BZPOPMAX                              |
-| PEXPIRE              | INCRBY                                                
| BZPOPMIN                              |
-| PEXPIREAT            | INCRBYFLOAT                                           
| CLIENT CACHING                        |
-| PING                 | MGET                                                  
| CLIENT GETNAME                        |
-| PSUBSCRIBE           | MSET                                                  
| CLIENT ID                             |
-| PTTL                 | MSETNX                                                
| CLIENT KILL                           |
-| PUNSUBSCRIBE         | PSETEX                                                
| CLIENT LIST                           |
-| QUIT                 | SCAN                                                  
| CLIENT PAUSE                          |
-| RENAME               | SCARD                                                 
| CLIENT REPLY                          |
-| SADD                 | SDIFF                                                 
| CLIENT SETNAME                        |
-| SET                   | SDIFFSTORE                                           
| CLIENT TRACKING                       |
-| SLOWLOG[2]            | SELECT                                               
| CLIENT UNBLOCK                        |
-| SMEMBERS              | SETBIT                                               
| CLUSTER ADDSLOTS                      |
-| SREM                  | SETEX                                                
| CLUSTER BUMPEPOCH                     |
-| SUBSCRIBE             | SETNX                                                
| CLUSTER COUNT-FAILURE-REPORTS         |
-| TTL                   | SETRANGE                                             
| CLUSTER COUNTKEYSINSLOT               |
-| TYPE                         | SHUTDOWN                                      
        | CLUSTER DELSLOTS                  |
-| UNSUBSCRIBE           | SINTER                                               
| CLUSTER FAILOVER                      |
-| PUBLISH               | SINTERSTORE                                          
| CLUSTER FLUSHSLOTS                |
-|                      | SISMEMBER                                             
| CLUSTER FORGET                    |
-|                      | SLOWLOG                                               
| CLUSTER GETKEYSINSLOT             |
-|                      | SMOVE                                                 
| CLUSTER INFO                          |
-|                      | SPOP                                                  
| CLUSTER KEYSLOT                   |
-|                      | SRANDMEMBER                                           
| CLUSTER MEET                      |
-|                      | SSCAN                                                 
| CLUSTER MYID                          |
-|                      | STRLEN                                                
| CLUSTER NODES                         |
-|                      | SUNION                                                
| CLUSTER REPLICAS                  |
-|                      | SUNIONSTORE                                           
| CLUSTER REPLICATE                     |
-|                      | TIME                                                  
| CLUSTER RESET                         |
-|                      | UNLINK [1]                                            
| CLUSTER SAVECONFIG                |
-|                      |                                                       
| CLUSTER SET-CONFIG-EPOCH          |
-|                      |                                                       
    | CLUSTER SETSLOT                   |
-|                      |                                                       
    | CLIENT GETREDIR                   |
-|                      |                                                       
| CLUSTER SLAVES                    |
-|                      |                                                       
| CLUSTER SLOTS                         |
-|                      |                                                       
| COMMAND                               |
-|                      |                                                       
| COMMAND COUNT                         |
-|                      |                                                       
| COMMAND GETKEYS                       |
-|                      |                                                       
| COMMAND INFO                          |
-|                      |                                                       
| CONFIG GET                            |
-|                      |                                                       
| CONFIG RESETSTAT                      |
-|                      |                                                       
| CONFIG REWRITE                        |
-|                      |                                                       
| CONFIG SET                            |
-|                      |                                                       
| DEBUG OBJECT                          |
-|                      |                                                       
| DEBUG SEGFAULT                        |
-|                      |                                                       
| DISCARD                               |
-|                      |                                                       
| DUMP                                  |
-|                      |                                                       
| EVAL                                  |
-|                      |                                                       
| EVALSHA                               |
-|                      |                                                       
| EXEC                                  |
-|                      |                                                       
| GEOADD                                |
-|                      |                                                       
| GEODIST                               |
-|                      |                                                       
| GEOHASH                               |
-|                      |                                                       
| GEOPOS                                |
-|                      |                                                       
| GEORADIUS                             |
-|                      |                                                       
| GEORADIUSBYMEMBER                     |
-|                      |                                                       
| LASTSAVE                              |
-|                      |                                                       
| LATENCY DOCTOR                        |
-|                      |                                                       
| LATENCY GRAPH                         |
-|                      |                                                       
| LATENCY HELP                          |
-|                      |                                                       
| LATENCY HISTORY                       |
-|                      |                                                       
| LATENCY LATEST                        |
-|                      |                                                       
| LATENCY RESET                         |
-|                      |                                                       
| LINDEX                                |
-|                      |                                                       
| LINSERT                               |
-|                      |                                                       
| LLEN                                  |
-|                      |                                                       
| LOLWUT                                |
-|                      |                                                       
| LPOP                                  |
-|                      |                                                       
| LPOS                                  |
-|                      |                                                       
| LPUSH                                 |
-|                      |                                                       
| LPUSHX                                |
-|                      |                                                       
| LRANGE                                |
-|                      |                                                       
| LREM                                  |
-|                      |                                                       
| LSET                                  |
-|                      |                                                       
| LTRIM                                 |
-|                      |                                                       
| MEMORY DOCTOR                         |
-|                      |                                                       
| MEMORY HELP                           |
-|                      |                                                       
| MEMORY MALLOC-STATS                   |
-|                      |                                                       
| MEMORY PURGE                          |
-|                      |                                                       
| MEMORY STATS                          |
-|                      |                                                       
| MEMORY USAGE                          |
-|                      |                                                       
| MIGRATE                               |
-|                      |                                                       
| MODULE LIST                           |
-|                      |                                                       
| MODULE LOAD                           |
-|                      |                                                       
| MODULE UNLOAD                         |
-|                      |                                                       
| MONITOR                               |
-|                      |                                                       
| MOVE                                  |
-|                      |                                                       
| MULTI                                 |
-|                      |                                                       
| OBJECT                                |
-|                      |                                                       
| PFADD                                 |
-|                      |                                                       
| PFCOUNT                               |
-|                      |                                                       
| PFMERGE                               |
-|                      |                                                       
| PSYNC                                 |
-|                      |                                                       
| PUBSUB                                |
-|                      |                                                       
| RANDOMKEY                             |
-|                      |                                                       
| READONLY                              |
-|                      |                                                       
| READWRITE                             |
-|                      |                                                       
| RENAMENX                              |
-|                      |                                                       
| REPLICAOF                             |
-|                      |                                                       
| RESTORE                               |
-|                      |                                                       
| ROLE                                  |
-|                      |                                                       
| RPOP                                  |
-|                      |                                                       
| RPOPLPUSH                             |
-|                      |                                                       
| RPUSH                                 |
-|                      |                                                       
| RPUSHX                                |
-|                      |                                                       
| SAVE                                  |
-|                      |                                                       
| SCRIPT DEBUG                          |
-|                      |                                                       
| SCRIPT EXISTS                         |
-|                      |                                                       
| SCRIPT FLUSH                          |
-|                      |                                                       
| SCRIPT KILL                           |
-|                      |                                                       
| SCRIPT LOAD                           |
-|                      |                                                       
| SLAVEOF                               |
-|                      |                                                       
| SORT                                  |
-|                      |                                                       
| STRALGO LCS                           |
-|                      |                                                       
| SWAPDB                                |
-|                      |                                                       
| SYNC                                  |
-|                      |                                                       
| TOUCH                                 |
-|                      |                                                       
| UNWATCH                               |
-|                      |                                                       
| WAIT                                  |
-|                      |                                                       
| WATCH                                 |
-|                      |                                                       
| XACK                                  |
-|                      |                                                       
| XADD                                  |
-|                      |                                                       
| XCLAIM                                |
-|                      |                                                       
| XDEL                                  |
-|                      |                                                       
| XGROUP                                |
-|                      |                                                       
| XINFO                                 |
-|                      |                                                       
| XLEN                                  |
-|                      |                                                       
| XPENDING                              |
-|                      |                                                       
| XRANGE                                |
-|                      |                                                       
| XREAD                                 |
-|                      |                                                       
| XREADGROUP GROUP                      |
-|                      |                                                       
| XREVRANGE                             |
-|                      |                                                       
| XTRIM                                 |
-|                      |                                                       
| ZADD                                  |
-|                      |                                                       
| ZCARD                                 |
-|                      |                                                       
| ZCOUNT                                |
-|                      |                                                       
| ZINCRBY                               |
-|                      |                                                       
| ZINTERSTORE                           |
-|                      |                                                       
| ZLEXCOUNT                             |
-|                      |                                                       
| ZPOPMAX                               |
-|                      |                                                       
| ZPOPMIN                               |
-|                      |                                                       
| ZRANGE                                |
-|                      |                                                       
| ZRANGEBYLEX                           |
-|                      |                                                       
| ZRANGEBYSCORE                         |
-|                      |                                                       
| ZRANK                                 |
-|                      |                                                       
| ZREM                                  |
-|                      |                                                       
| ZREMRANGEBYLEX                        |
-|                      |                                                       
| ZREMRANGEBYRANK                       |
-|                      |                                                       
| ZREMRANGEBYSCORE                      |
-|                      |                                                       
| ZREVRANGE                             |
-|                      |                                                       
| ZREVRANGEBYSCORE                      |
-|                      |                                                       
| ZREVRANK                              |
-|                      |                                                       
| ZSCAN                                 |
-|                      |                                                       
| ZSCORE                                |
-|                      |                                                       
| ZUNIONSTORE                           |                       |
-
-**NOTES:**
-
-[1] - UNLINK is implemented as a synonym to DEL and does not unlink 
asynchronously.
-[2] - SLOWLOG is implemented as a NoOp.
+The Geode APIs compatible with Redis implement a subset of the full Redis 
command set.
+
+#### <a name="supported-redis-commands"></a> Supported Redis Commands [Return 
to top](#introduction)
+- APPEND 
+- AUTH
+- DECR
+- DECRBY
+- DEL
+- EXISTS
+- EXPIRE
+- EXPIREAT
+- GET
+- GETRANGE
+- HDEL
+- HEXISTS
+- HGET
+- HGETALL
+- HINCRBY
+- HINCRBYFLOAT
+- HLEN
+- HMGET
+- HMSET
+- HSCAN
+- HSET
+- HSETNX
+- HSTRLEN
+- HVALS
+- HKEYS
+- INCR
+- INCRBY
+- INCRBYFLOAT
+- INFO <sup>1</sup>
+- KEYS
+- MGET
+- PERSIST
+- PEXPIRE
+- PEXPIREAT
+- PING
+- PSUBSCRIBE
+- PTTL
+- PUBLISH
+- PUNSUBSCRIBE
+- QUIT
+- RENAME
+- SADD
+- SET
+- SETNX
+- SLOWLOG <sup>2</sup>
+- SMEMBERS
+- SREM
+- STRLEN
+- SUBSCRIBE
+- TTL
+- TYPE
+- UNSUBSCRIBE
+
+**NOTES:** <br/>
+<sup>1</sup> INFO is implemented for the sections and fields listed below:
+ - clients
+    - connected_clients
+    - blocked_clients (will always return 0)
+ - cluster
+    - cluster_enables (will always return 0)
+ - keyspace
+    - returns stats for db: 0
+ - memory
+    - maxmemory
+    - used_memory
+    - mem_fragmentation_ratio (will always report 1.00) 
+ - persistence
+    - loading (will always return 0)
+    - rdb_changes_since_last_save (will always return 0)
+    - rdb_last_save_time (will always return 0)
+ - replication
+    - role

Review comment:
       Right now this is always `master`.

##########
File path: geode-redis/README.md
##########
@@ -128,210 +128,98 @@ not connected>
 ```
 ### <a name="redis-commands"></a>Redis Commands
 
-The Geode APIs compatible with Redis currently implements a subset of the full 
Redis command set. Some commands
-are **unsupported** (see table below). Unsupported commands are available to 
use, but have not been
-fully tested. There is no guarantee they will work exactly as expected.
-
-#### <a name="enable-unsupported-commands"></a>Enabling Unsupported Commands
-
-If you already have Geode servers running with Redis enabled, you can execute 
the following
-command with gfsh to enable unsupported commands:
-
-```pre
-redis --enable-unsupported-commands
-```
-
-You can also enable unsupported commands when you start the Geode server by 
setting the Java property `enable-redis-unsupported-commands=true`:
-
-```pre
-start server \
-  --J=-Denable-redis-unsupported-commands=true \
-  --name=<serverName> \
-  --locators=<locatorPort> \
-  --compatible-with-redis-port=<redisPort> \
-  --compatible-with-redis-bind-address=<redisBindAddress> \
-  --compatible-with-redis-password=<redisPassword>
-```
-
-#### <a name="redis-command-status"></a>Redis Command Status [Return to 
top](#introduction)
-
-| Supported Commands   | Unsupported Commands<br>(Implemented - not tested)    
|    Commands Not Implemented           |
-|-----------------------|-------------------------------------------------------|-----------------------------------|
-| APPEND               | BITCOUNT                                              
| ACL CAT                               |
-| AUTH                 | BITOP                                                 
| ACL DELUSER                           |
-| DECRBY               | BITPOS                                                
| ACL GENPASS                           |
-| DEL                  | DBSIZE                                                
| ACL GETUSER                           |
-| EXISTS               | DECR                                                  
| ACL HELP                              |
-| EXPIRE               | ECHO                                                  
| ACL LIST                              |
-| EXPIREAT             | FLUSHALL                                              
| ACL LOAD                              |
-| GET                  | FLUSHDB                                               
| ACL LOG                               |
-| HGETALL                      | GETBIT                                        
        | ACL SAVE                              |
-| HMGET                | GETRANGE                                              
| ACL SETUSER                           |
-| HMSET                | GETSET                                                
| ACL USERS                             |
-| HSET                         | HDEL                                          
        | ACL WHOAMI                            |
-| HSETNX               | HEXISTS                                               
| BGREWRITEAOF                          |
-| HSTRLEN                      | HGET                                          
        | BGSAVE                                |
-| HLEN                 | HINCRBY                                               
| BITFIELD                              |
-| HVALS                | HINCRBYFLOAT                                          
| BLPOP                                 |
-| INFO                 | HKEYS                                                 
| BRPOP                                 |
-| KEYS                 | HSCAN                                                 
| BRPOPLPUSH                            |
-| PERSIST              | INCR                                                  
| BZPOPMAX                              |
-| PEXPIRE              | INCRBY                                                
| BZPOPMIN                              |
-| PEXPIREAT            | INCRBYFLOAT                                           
| CLIENT CACHING                        |
-| PING                 | MGET                                                  
| CLIENT GETNAME                        |
-| PSUBSCRIBE           | MSET                                                  
| CLIENT ID                             |
-| PTTL                 | MSETNX                                                
| CLIENT KILL                           |
-| PUNSUBSCRIBE         | PSETEX                                                
| CLIENT LIST                           |
-| QUIT                 | SCAN                                                  
| CLIENT PAUSE                          |
-| RENAME               | SCARD                                                 
| CLIENT REPLY                          |
-| SADD                 | SDIFF                                                 
| CLIENT SETNAME                        |
-| SET                   | SDIFFSTORE                                           
| CLIENT TRACKING                       |
-| SLOWLOG[2]            | SELECT                                               
| CLIENT UNBLOCK                        |
-| SMEMBERS              | SETBIT                                               
| CLUSTER ADDSLOTS                      |
-| SREM                  | SETEX                                                
| CLUSTER BUMPEPOCH                     |
-| SUBSCRIBE             | SETNX                                                
| CLUSTER COUNT-FAILURE-REPORTS         |
-| TTL                   | SETRANGE                                             
| CLUSTER COUNTKEYSINSLOT               |
-| TYPE                         | SHUTDOWN                                      
        | CLUSTER DELSLOTS                  |
-| UNSUBSCRIBE           | SINTER                                               
| CLUSTER FAILOVER                      |
-| PUBLISH               | SINTERSTORE                                          
| CLUSTER FLUSHSLOTS                |
-|                      | SISMEMBER                                             
| CLUSTER FORGET                    |
-|                      | SLOWLOG                                               
| CLUSTER GETKEYSINSLOT             |
-|                      | SMOVE                                                 
| CLUSTER INFO                          |
-|                      | SPOP                                                  
| CLUSTER KEYSLOT                   |
-|                      | SRANDMEMBER                                           
| CLUSTER MEET                      |
-|                      | SSCAN                                                 
| CLUSTER MYID                          |
-|                      | STRLEN                                                
| CLUSTER NODES                         |
-|                      | SUNION                                                
| CLUSTER REPLICAS                  |
-|                      | SUNIONSTORE                                           
| CLUSTER REPLICATE                     |
-|                      | TIME                                                  
| CLUSTER RESET                         |
-|                      | UNLINK [1]                                            
| CLUSTER SAVECONFIG                |
-|                      |                                                       
| CLUSTER SET-CONFIG-EPOCH          |
-|                      |                                                       
    | CLUSTER SETSLOT                   |
-|                      |                                                       
    | CLIENT GETREDIR                   |
-|                      |                                                       
| CLUSTER SLAVES                    |
-|                      |                                                       
| CLUSTER SLOTS                         |
-|                      |                                                       
| COMMAND                               |
-|                      |                                                       
| COMMAND COUNT                         |
-|                      |                                                       
| COMMAND GETKEYS                       |
-|                      |                                                       
| COMMAND INFO                          |
-|                      |                                                       
| CONFIG GET                            |
-|                      |                                                       
| CONFIG RESETSTAT                      |
-|                      |                                                       
| CONFIG REWRITE                        |
-|                      |                                                       
| CONFIG SET                            |
-|                      |                                                       
| DEBUG OBJECT                          |
-|                      |                                                       
| DEBUG SEGFAULT                        |
-|                      |                                                       
| DISCARD                               |
-|                      |                                                       
| DUMP                                  |
-|                      |                                                       
| EVAL                                  |
-|                      |                                                       
| EVALSHA                               |
-|                      |                                                       
| EXEC                                  |
-|                      |                                                       
| GEOADD                                |
-|                      |                                                       
| GEODIST                               |
-|                      |                                                       
| GEOHASH                               |
-|                      |                                                       
| GEOPOS                                |
-|                      |                                                       
| GEORADIUS                             |
-|                      |                                                       
| GEORADIUSBYMEMBER                     |
-|                      |                                                       
| LASTSAVE                              |
-|                      |                                                       
| LATENCY DOCTOR                        |
-|                      |                                                       
| LATENCY GRAPH                         |
-|                      |                                                       
| LATENCY HELP                          |
-|                      |                                                       
| LATENCY HISTORY                       |
-|                      |                                                       
| LATENCY LATEST                        |
-|                      |                                                       
| LATENCY RESET                         |
-|                      |                                                       
| LINDEX                                |
-|                      |                                                       
| LINSERT                               |
-|                      |                                                       
| LLEN                                  |
-|                      |                                                       
| LOLWUT                                |
-|                      |                                                       
| LPOP                                  |
-|                      |                                                       
| LPOS                                  |
-|                      |                                                       
| LPUSH                                 |
-|                      |                                                       
| LPUSHX                                |
-|                      |                                                       
| LRANGE                                |
-|                      |                                                       
| LREM                                  |
-|                      |                                                       
| LSET                                  |
-|                      |                                                       
| LTRIM                                 |
-|                      |                                                       
| MEMORY DOCTOR                         |
-|                      |                                                       
| MEMORY HELP                           |
-|                      |                                                       
| MEMORY MALLOC-STATS                   |
-|                      |                                                       
| MEMORY PURGE                          |
-|                      |                                                       
| MEMORY STATS                          |
-|                      |                                                       
| MEMORY USAGE                          |
-|                      |                                                       
| MIGRATE                               |
-|                      |                                                       
| MODULE LIST                           |
-|                      |                                                       
| MODULE LOAD                           |
-|                      |                                                       
| MODULE UNLOAD                         |
-|                      |                                                       
| MONITOR                               |
-|                      |                                                       
| MOVE                                  |
-|                      |                                                       
| MULTI                                 |
-|                      |                                                       
| OBJECT                                |
-|                      |                                                       
| PFADD                                 |
-|                      |                                                       
| PFCOUNT                               |
-|                      |                                                       
| PFMERGE                               |
-|                      |                                                       
| PSYNC                                 |
-|                      |                                                       
| PUBSUB                                |
-|                      |                                                       
| RANDOMKEY                             |
-|                      |                                                       
| READONLY                              |
-|                      |                                                       
| READWRITE                             |
-|                      |                                                       
| RENAMENX                              |
-|                      |                                                       
| REPLICAOF                             |
-|                      |                                                       
| RESTORE                               |
-|                      |                                                       
| ROLE                                  |
-|                      |                                                       
| RPOP                                  |
-|                      |                                                       
| RPOPLPUSH                             |
-|                      |                                                       
| RPUSH                                 |
-|                      |                                                       
| RPUSHX                                |
-|                      |                                                       
| SAVE                                  |
-|                      |                                                       
| SCRIPT DEBUG                          |
-|                      |                                                       
| SCRIPT EXISTS                         |
-|                      |                                                       
| SCRIPT FLUSH                          |
-|                      |                                                       
| SCRIPT KILL                           |
-|                      |                                                       
| SCRIPT LOAD                           |
-|                      |                                                       
| SLAVEOF                               |
-|                      |                                                       
| SORT                                  |
-|                      |                                                       
| STRALGO LCS                           |
-|                      |                                                       
| SWAPDB                                |
-|                      |                                                       
| SYNC                                  |
-|                      |                                                       
| TOUCH                                 |
-|                      |                                                       
| UNWATCH                               |
-|                      |                                                       
| WAIT                                  |
-|                      |                                                       
| WATCH                                 |
-|                      |                                                       
| XACK                                  |
-|                      |                                                       
| XADD                                  |
-|                      |                                                       
| XCLAIM                                |
-|                      |                                                       
| XDEL                                  |
-|                      |                                                       
| XGROUP                                |
-|                      |                                                       
| XINFO                                 |
-|                      |                                                       
| XLEN                                  |
-|                      |                                                       
| XPENDING                              |
-|                      |                                                       
| XRANGE                                |
-|                      |                                                       
| XREAD                                 |
-|                      |                                                       
| XREADGROUP GROUP                      |
-|                      |                                                       
| XREVRANGE                             |
-|                      |                                                       
| XTRIM                                 |
-|                      |                                                       
| ZADD                                  |
-|                      |                                                       
| ZCARD                                 |
-|                      |                                                       
| ZCOUNT                                |
-|                      |                                                       
| ZINCRBY                               |
-|                      |                                                       
| ZINTERSTORE                           |
-|                      |                                                       
| ZLEXCOUNT                             |
-|                      |                                                       
| ZPOPMAX                               |
-|                      |                                                       
| ZPOPMIN                               |
-|                      |                                                       
| ZRANGE                                |
-|                      |                                                       
| ZRANGEBYLEX                           |
-|                      |                                                       
| ZRANGEBYSCORE                         |
-|                      |                                                       
| ZRANK                                 |
-|                      |                                                       
| ZREM                                  |
-|                      |                                                       
| ZREMRANGEBYLEX                        |
-|                      |                                                       
| ZREMRANGEBYRANK                       |
-|                      |                                                       
| ZREMRANGEBYSCORE                      |
-|                      |                                                       
| ZREVRANGE                             |
-|                      |                                                       
| ZREVRANGEBYSCORE                      |
-|                      |                                                       
| ZREVRANK                              |
-|                      |                                                       
| ZSCAN                                 |
-|                      |                                                       
| ZSCORE                                |
-|                      |                                                       
| ZUNIONSTORE                           |                       |
-
-**NOTES:**
-
-[1] - UNLINK is implemented as a synonym to DEL and does not unlink 
asynchronously.
-[2] - SLOWLOG is implemented as a NoOp.
+The Geode APIs compatible with Redis implement a subset of the full Redis 
command set.
+
+#### <a name="supported-redis-commands"></a> Supported Redis Commands [Return 
to top](#introduction)
+- APPEND 
+- AUTH
+- DECR
+- DECRBY
+- DEL
+- EXISTS
+- EXPIRE
+- EXPIREAT
+- GET
+- GETRANGE
+- HDEL
+- HEXISTS
+- HGET
+- HGETALL
+- HINCRBY
+- HINCRBYFLOAT
+- HLEN
+- HMGET
+- HMSET
+- HSCAN
+- HSET
+- HSETNX
+- HSTRLEN
+- HVALS
+- HKEYS
+- INCR
+- INCRBY
+- INCRBYFLOAT
+- INFO <sup>1</sup>
+- KEYS
+- MGET
+- PERSIST
+- PEXPIRE
+- PEXPIREAT
+- PING
+- PSUBSCRIBE
+- PTTL
+- PUBLISH
+- PUNSUBSCRIBE
+- QUIT
+- RENAME
+- SADD
+- SET
+- SETNX
+- SLOWLOG <sup>2</sup>
+- SMEMBERS
+- SREM
+- STRLEN
+- SUBSCRIBE
+- TTL
+- TYPE
+- UNSUBSCRIBE
+
+**NOTES:** <br/>
+<sup>1</sup> INFO is implemented for the sections and fields listed below:
+ - clients
+    - connected_clients
+    - blocked_clients (will always return 0)
+ - cluster
+    - cluster_enables (will always return 0)
+ - keyspace
+    - returns stats for db: 0
+ - memory
+    - maxmemory
+    - used_memory
+    - mem_fragmentation_ratio (will always report 1.00) 
+ - persistence
+    - loading (will always return 0)
+    - rdb_changes_since_last_save (will always return 0)
+    - rdb_last_save_time (will always return 0)
+ - replication
+    - role
+    - connected_slaves (will always return 0)
+ - server
+   - redis_version
+   - redis_mode

Review comment:
       This is always `standalone` right now... not sure if we need to say that 
or not?

##########
File path: geode-redis/README.md
##########
@@ -128,210 +128,98 @@ not connected>
 ```
 ### <a name="redis-commands"></a>Redis Commands
 
-The Geode APIs compatible with Redis currently implements a subset of the full 
Redis command set. Some commands
-are **unsupported** (see table below). Unsupported commands are available to 
use, but have not been
-fully tested. There is no guarantee they will work exactly as expected.
-
-#### <a name="enable-unsupported-commands"></a>Enabling Unsupported Commands
-
-If you already have Geode servers running with Redis enabled, you can execute 
the following
-command with gfsh to enable unsupported commands:
-
-```pre
-redis --enable-unsupported-commands
-```
-
-You can also enable unsupported commands when you start the Geode server by 
setting the Java property `enable-redis-unsupported-commands=true`:
-
-```pre
-start server \
-  --J=-Denable-redis-unsupported-commands=true \
-  --name=<serverName> \
-  --locators=<locatorPort> \
-  --compatible-with-redis-port=<redisPort> \
-  --compatible-with-redis-bind-address=<redisBindAddress> \
-  --compatible-with-redis-password=<redisPassword>
-```
-
-#### <a name="redis-command-status"></a>Redis Command Status [Return to 
top](#introduction)
-
-| Supported Commands   | Unsupported Commands<br>(Implemented - not tested)    
|    Commands Not Implemented           |
-|-----------------------|-------------------------------------------------------|-----------------------------------|
-| APPEND               | BITCOUNT                                              
| ACL CAT                               |
-| AUTH                 | BITOP                                                 
| ACL DELUSER                           |
-| DECRBY               | BITPOS                                                
| ACL GENPASS                           |
-| DEL                  | DBSIZE                                                
| ACL GETUSER                           |
-| EXISTS               | DECR                                                  
| ACL HELP                              |
-| EXPIRE               | ECHO                                                  
| ACL LIST                              |
-| EXPIREAT             | FLUSHALL                                              
| ACL LOAD                              |
-| GET                  | FLUSHDB                                               
| ACL LOG                               |
-| HGETALL                      | GETBIT                                        
        | ACL SAVE                              |
-| HMGET                | GETRANGE                                              
| ACL SETUSER                           |
-| HMSET                | GETSET                                                
| ACL USERS                             |
-| HSET                         | HDEL                                          
        | ACL WHOAMI                            |
-| HSETNX               | HEXISTS                                               
| BGREWRITEAOF                          |
-| HSTRLEN                      | HGET                                          
        | BGSAVE                                |
-| HLEN                 | HINCRBY                                               
| BITFIELD                              |
-| HVALS                | HINCRBYFLOAT                                          
| BLPOP                                 |
-| INFO                 | HKEYS                                                 
| BRPOP                                 |
-| KEYS                 | HSCAN                                                 
| BRPOPLPUSH                            |
-| PERSIST              | INCR                                                  
| BZPOPMAX                              |
-| PEXPIRE              | INCRBY                                                
| BZPOPMIN                              |
-| PEXPIREAT            | INCRBYFLOAT                                           
| CLIENT CACHING                        |
-| PING                 | MGET                                                  
| CLIENT GETNAME                        |
-| PSUBSCRIBE           | MSET                                                  
| CLIENT ID                             |
-| PTTL                 | MSETNX                                                
| CLIENT KILL                           |
-| PUNSUBSCRIBE         | PSETEX                                                
| CLIENT LIST                           |
-| QUIT                 | SCAN                                                  
| CLIENT PAUSE                          |
-| RENAME               | SCARD                                                 
| CLIENT REPLY                          |
-| SADD                 | SDIFF                                                 
| CLIENT SETNAME                        |
-| SET                   | SDIFFSTORE                                           
| CLIENT TRACKING                       |
-| SLOWLOG[2]            | SELECT                                               
| CLIENT UNBLOCK                        |
-| SMEMBERS              | SETBIT                                               
| CLUSTER ADDSLOTS                      |
-| SREM                  | SETEX                                                
| CLUSTER BUMPEPOCH                     |
-| SUBSCRIBE             | SETNX                                                
| CLUSTER COUNT-FAILURE-REPORTS         |
-| TTL                   | SETRANGE                                             
| CLUSTER COUNTKEYSINSLOT               |
-| TYPE                         | SHUTDOWN                                      
        | CLUSTER DELSLOTS                  |
-| UNSUBSCRIBE           | SINTER                                               
| CLUSTER FAILOVER                      |
-| PUBLISH               | SINTERSTORE                                          
| CLUSTER FLUSHSLOTS                |
-|                      | SISMEMBER                                             
| CLUSTER FORGET                    |
-|                      | SLOWLOG                                               
| CLUSTER GETKEYSINSLOT             |
-|                      | SMOVE                                                 
| CLUSTER INFO                          |
-|                      | SPOP                                                  
| CLUSTER KEYSLOT                   |
-|                      | SRANDMEMBER                                           
| CLUSTER MEET                      |
-|                      | SSCAN                                                 
| CLUSTER MYID                          |
-|                      | STRLEN                                                
| CLUSTER NODES                         |
-|                      | SUNION                                                
| CLUSTER REPLICAS                  |
-|                      | SUNIONSTORE                                           
| CLUSTER REPLICATE                     |
-|                      | TIME                                                  
| CLUSTER RESET                         |
-|                      | UNLINK [1]                                            
| CLUSTER SAVECONFIG                |
-|                      |                                                       
| CLUSTER SET-CONFIG-EPOCH          |
-|                      |                                                       
    | CLUSTER SETSLOT                   |
-|                      |                                                       
    | CLIENT GETREDIR                   |
-|                      |                                                       
| CLUSTER SLAVES                    |
-|                      |                                                       
| CLUSTER SLOTS                         |
-|                      |                                                       
| COMMAND                               |
-|                      |                                                       
| COMMAND COUNT                         |
-|                      |                                                       
| COMMAND GETKEYS                       |
-|                      |                                                       
| COMMAND INFO                          |
-|                      |                                                       
| CONFIG GET                            |
-|                      |                                                       
| CONFIG RESETSTAT                      |
-|                      |                                                       
| CONFIG REWRITE                        |
-|                      |                                                       
| CONFIG SET                            |
-|                      |                                                       
| DEBUG OBJECT                          |
-|                      |                                                       
| DEBUG SEGFAULT                        |
-|                      |                                                       
| DISCARD                               |
-|                      |                                                       
| DUMP                                  |
-|                      |                                                       
| EVAL                                  |
-|                      |                                                       
| EVALSHA                               |
-|                      |                                                       
| EXEC                                  |
-|                      |                                                       
| GEOADD                                |
-|                      |                                                       
| GEODIST                               |
-|                      |                                                       
| GEOHASH                               |
-|                      |                                                       
| GEOPOS                                |
-|                      |                                                       
| GEORADIUS                             |
-|                      |                                                       
| GEORADIUSBYMEMBER                     |
-|                      |                                                       
| LASTSAVE                              |
-|                      |                                                       
| LATENCY DOCTOR                        |
-|                      |                                                       
| LATENCY GRAPH                         |
-|                      |                                                       
| LATENCY HELP                          |
-|                      |                                                       
| LATENCY HISTORY                       |
-|                      |                                                       
| LATENCY LATEST                        |
-|                      |                                                       
| LATENCY RESET                         |
-|                      |                                                       
| LINDEX                                |
-|                      |                                                       
| LINSERT                               |
-|                      |                                                       
| LLEN                                  |
-|                      |                                                       
| LOLWUT                                |
-|                      |                                                       
| LPOP                                  |
-|                      |                                                       
| LPOS                                  |
-|                      |                                                       
| LPUSH                                 |
-|                      |                                                       
| LPUSHX                                |
-|                      |                                                       
| LRANGE                                |
-|                      |                                                       
| LREM                                  |
-|                      |                                                       
| LSET                                  |
-|                      |                                                       
| LTRIM                                 |
-|                      |                                                       
| MEMORY DOCTOR                         |
-|                      |                                                       
| MEMORY HELP                           |
-|                      |                                                       
| MEMORY MALLOC-STATS                   |
-|                      |                                                       
| MEMORY PURGE                          |
-|                      |                                                       
| MEMORY STATS                          |
-|                      |                                                       
| MEMORY USAGE                          |
-|                      |                                                       
| MIGRATE                               |
-|                      |                                                       
| MODULE LIST                           |
-|                      |                                                       
| MODULE LOAD                           |
-|                      |                                                       
| MODULE UNLOAD                         |
-|                      |                                                       
| MONITOR                               |
-|                      |                                                       
| MOVE                                  |
-|                      |                                                       
| MULTI                                 |
-|                      |                                                       
| OBJECT                                |
-|                      |                                                       
| PFADD                                 |
-|                      |                                                       
| PFCOUNT                               |
-|                      |                                                       
| PFMERGE                               |
-|                      |                                                       
| PSYNC                                 |
-|                      |                                                       
| PUBSUB                                |
-|                      |                                                       
| RANDOMKEY                             |
-|                      |                                                       
| READONLY                              |
-|                      |                                                       
| READWRITE                             |
-|                      |                                                       
| RENAMENX                              |
-|                      |                                                       
| REPLICAOF                             |
-|                      |                                                       
| RESTORE                               |
-|                      |                                                       
| ROLE                                  |
-|                      |                                                       
| RPOP                                  |
-|                      |                                                       
| RPOPLPUSH                             |
-|                      |                                                       
| RPUSH                                 |
-|                      |                                                       
| RPUSHX                                |
-|                      |                                                       
| SAVE                                  |
-|                      |                                                       
| SCRIPT DEBUG                          |
-|                      |                                                       
| SCRIPT EXISTS                         |
-|                      |                                                       
| SCRIPT FLUSH                          |
-|                      |                                                       
| SCRIPT KILL                           |
-|                      |                                                       
| SCRIPT LOAD                           |
-|                      |                                                       
| SLAVEOF                               |
-|                      |                                                       
| SORT                                  |
-|                      |                                                       
| STRALGO LCS                           |
-|                      |                                                       
| SWAPDB                                |
-|                      |                                                       
| SYNC                                  |
-|                      |                                                       
| TOUCH                                 |
-|                      |                                                       
| UNWATCH                               |
-|                      |                                                       
| WAIT                                  |
-|                      |                                                       
| WATCH                                 |
-|                      |                                                       
| XACK                                  |
-|                      |                                                       
| XADD                                  |
-|                      |                                                       
| XCLAIM                                |
-|                      |                                                       
| XDEL                                  |
-|                      |                                                       
| XGROUP                                |
-|                      |                                                       
| XINFO                                 |
-|                      |                                                       
| XLEN                                  |
-|                      |                                                       
| XPENDING                              |
-|                      |                                                       
| XRANGE                                |
-|                      |                                                       
| XREAD                                 |
-|                      |                                                       
| XREADGROUP GROUP                      |
-|                      |                                                       
| XREVRANGE                             |
-|                      |                                                       
| XTRIM                                 |
-|                      |                                                       
| ZADD                                  |
-|                      |                                                       
| ZCARD                                 |
-|                      |                                                       
| ZCOUNT                                |
-|                      |                                                       
| ZINCRBY                               |
-|                      |                                                       
| ZINTERSTORE                           |
-|                      |                                                       
| ZLEXCOUNT                             |
-|                      |                                                       
| ZPOPMAX                               |
-|                      |                                                       
| ZPOPMIN                               |
-|                      |                                                       
| ZRANGE                                |
-|                      |                                                       
| ZRANGEBYLEX                           |
-|                      |                                                       
| ZRANGEBYSCORE                         |
-|                      |                                                       
| ZRANK                                 |
-|                      |                                                       
| ZREM                                  |
-|                      |                                                       
| ZREMRANGEBYLEX                        |
-|                      |                                                       
| ZREMRANGEBYRANK                       |
-|                      |                                                       
| ZREMRANGEBYSCORE                      |
-|                      |                                                       
| ZREVRANGE                             |
-|                      |                                                       
| ZREVRANGEBYSCORE                      |
-|                      |                                                       
| ZREVRANK                              |
-|                      |                                                       
| ZSCAN                                 |
-|                      |                                                       
| ZSCORE                                |
-|                      |                                                       
| ZUNIONSTORE                           |                       |
-
-**NOTES:**
-
-[1] - UNLINK is implemented as a synonym to DEL and does not unlink 
asynchronously.
-[2] - SLOWLOG is implemented as a NoOp.
+The Geode APIs compatible with Redis implement a subset of the full Redis 
command set.
+
+#### <a name="supported-redis-commands"></a> Supported Redis Commands [Return 
to top](#introduction)
+- APPEND 
+- AUTH
+- DECR
+- DECRBY
+- DEL
+- EXISTS
+- EXPIRE
+- EXPIREAT
+- GET
+- GETRANGE
+- HDEL
+- HEXISTS
+- HGET
+- HGETALL
+- HINCRBY
+- HINCRBYFLOAT
+- HLEN
+- HMGET
+- HMSET
+- HSCAN
+- HSET
+- HSETNX
+- HSTRLEN
+- HVALS
+- HKEYS
+- INCR
+- INCRBY
+- INCRBYFLOAT
+- INFO <sup>1</sup>
+- KEYS
+- MGET
+- PERSIST
+- PEXPIRE
+- PEXPIREAT
+- PING
+- PSUBSCRIBE
+- PTTL
+- PUBLISH
+- PUNSUBSCRIBE
+- QUIT
+- RENAME
+- SADD
+- SET
+- SETNX
+- SLOWLOG <sup>2</sup>
+- SMEMBERS
+- SREM
+- STRLEN
+- SUBSCRIBE
+- TTL
+- TYPE
+- UNSUBSCRIBE
+
+**NOTES:** <br/>
+<sup>1</sup> INFO is implemented for the sections and fields listed below:
+ - clients
+    - connected_clients
+    - blocked_clients (will always return 0)
+ - cluster
+    - cluster_enables (will always return 0)

Review comment:
       I think this is `cluster_enabled`




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to