From ba8dfb8a875febde33f427b917096f4731156a82 Mon Sep 17 00:00:00 2001 From: Richard Smedley Date: Tue, 17 Oct 2023 09:24:47 +0100 Subject: [PATCH] Counters & TTL DOC-11523 --- modules/howtos/pages/kv-operations.adoc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/howtos/pages/kv-operations.adoc b/modules/howtos/pages/kv-operations.adoc index 70024c91..cfaf81b1 100644 --- a/modules/howtos/pages/kv-operations.adoc +++ b/modules/howtos/pages/kv-operations.adoc @@ -285,6 +285,11 @@ include::example$KvOperations.cs[tag=binarydecrementwithoptions,indent=0] //// NOTE: Increment & Decrement are considered part of the ‘binary’ API and as such may still be subject to change +TIP: Setting the document expiry time only works when a document is created, and it is not possible to update the expiry time of an existing counter document with the Increment method -- to do this during an increment, use with the `Touch()` method. + + + +// Atomicity Across Data Centers include::{version-common}@sdk:shared:partial$atomic.adoc[tag=xdcr]