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.
我想检查 couchbase 中的密钥,但我不想更新过期时间。那是怎么做的?
我正在使用 .Net SDK 1.2.9
要更新过期时间,请使用 get 和 touch 操作:
var bearWithUpdateExpiration = client.Get("beer", DateTime.Now.AddMinutes(5));
对于不更新过期时间,您只需使用 get 操作:
var beer = client.Get<Beer>("beer");