Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/root/intro/arch_overview/redis.rst
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,8 @@ For details on each command's usage see the official
ZREVRANGEBYLEX, Sorted Set
ZREVRANGEBYSCORE, Sorted Set
ZREVRANK, Sorted Set
ZPOPMIN, Sorted Set
ZPOPMAX, Sorted Set
ZSCAN, Sorted Set
ZSCORE, Sorted Set
APPEND, String
Expand Down
1 change: 1 addition & 0 deletions docs/root/intro/version_history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Version history
================
* dubbo_proxy: support the :ref:`Dubbo proxy filter <config_network_filters_dubbo_proxy>`.
* http: mitigated a race condition with the :ref:`delayed_close_timeout<envoy_api_field_config.filter.network.http_connection_manager.v2.HttpConnectionManager.delayed_close_timeout>` where it could trigger while actively flushing a pending write buffer for a downstream connection.
* redis: add support for zpopmax and zpopmin commands.
* upstream: added :ref:`upstream_cx_pool_overflow <config_cluster_manager_cluster_stats>` for the connection pool circuit breaker.

1.10.0 (Apr 5, 2019)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ struct SupportedCommands {
"pexpireat", "psetex", "pttl", "restore", "rpop", "rpush", "rpushx", "sadd", "scard", "set",
"setbit", "setex", "setnx", "setrange", "sismember", "smembers", "spop", "srandmember",
"srem", "sscan", "strlen", "ttl", "type", "zadd", "zcard", "zcount", "zincrby", "zlexcount",
"zrange", "zrangebylex", "zrangebyscore", "zrank", "zrem", "zremrangebylex",
"zremrangebyrank", "zremrangebyscore", "zrevrange", "zrevrangebylex", "zrevrangebyscore",
"zrevrank", "zscan", "zscore");
"zpopmin", "zpopmax", "zrange", "zrangebylex", "zrangebyscore", "zrank", "zrem",
"zremrangebylex", "zremrangebyrank", "zremrangebyscore", "zrevrange", "zrevrangebylex",
"zrevrangebyscore", "zrevrank", "zscan", "zscore");
}

/**
Expand Down