Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在更新文档的时候,我需要根据一个字段的值来改变TTL。
Couchbase 是否支持在创建文档后更改 TTL?
如果除了重置 TTL 之外您没有更改文档,请使用touch.
touch
如果您还要更改文档,请使用允许您同时将 TTL 设置为replace和的覆盖之一upsert。
replace
upsert
是的,您可以更新现有文档的 TTL。使用接受 doc id 和 TTL 值的 replace 方法
client.replace(key, expiry, value [, persistTo] ,[ replicateTo])