The etcd documentation具有以下示例:
卷曲http://127.0.0.1:2379/v2/keys/queue -XPOST -d value = Job1
{
"action": "create",
"node": {
"createdIndex": 6,
"key": "/queue/00000000000000000006",
"modifiedIndex": 6,
"value": "Job1"
}
}
是否确保键始终是createdIndex的零填充表示形式?
文档中提到:
如果稍后创建另一个条目,则可以肯定 大于先前密钥的密钥名称。
...是这种情况,因为createdIndex和键名将始终相同,并且这是提供给createdIndex的保证的扩展吗?