浏览代码

docs: add ordering wrapper as experimental feature

Anthony Romano 8 年之前
父节点
当前提交
5088ae3e67
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Documentation/dev-guide/experimental_apis.md

+ 1 - 1
Documentation/dev-guide/experimental_apis.md

@@ -4,4 +4,4 @@ For the most part, the etcd project is stable, but we are still moving fast! We
 
 ## The current experimental API/features are:
 
-(none currently)
+- [KV ordering](https://godoc.org/github.com/coreos/etcd/clientv3/ordering) wrapper. When an etcd client switches endpoints, responses to serializable reads may go backward in time if the new endpoint is lagging behind the rest of the cluster. The ordering wrapper caches the current cluster revision from response headers. If a response revision is less than the cached revision, the client selects another endpoint and reissues the read. Enable in grpcproxy with `--experimental-serializable-ordering`.