Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ This API indicates errors via the error object in the return value. Exceptions a
*The Advanced UPSERT operation*: _result = couchbase.upsert(binding, meta, doc)_

This operation allows updating an existing document in the bucket, or if absent, creating a fresh document with the specified key.
The operation does not allow specifying CAS (it will be silently ignored).
The operation does not allow you to specify CAS.
It also allows specifying an expiration time (or TTL) to be set on the document.

Contrast this to the _Basic Bucket Accessor_ SET operation which merely uses an exposed JavaScript map defined via a bucket binding alias "src_col[meta.id] = adoc".
Expand Down
3 changes: 2 additions & 1 deletion modules/eventing/pages/eventing-language-constructs.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ This deletes the provided key from the KV bucket the variable is bound to. If th
=== Advanced Keyspace Accessors

The following advanced bucket accessors have been added to expose a richer set of options and operators.
Unlike the basic bucket accessors these operations have non-trivial argument sets and return values for complete details refer to xref:eventing-advanced-keyspace-accessors.adoc[Advanced Keyspace Accessors Details].
Unlike the basic bucket accessors these operations have non-trivial argument sets and return values.
For complete details refer to xref:eventing-advanced-keyspace-accessors.adoc[].

[#advanced-get-op]
* *The Advanced GET operation*: _result = couchbase.get(binding, meta)_
Expand Down
2 changes: 1 addition & 1 deletion modules/eventing/pages/eventing-timers.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:page-edition: Enterprise Edition

{description}
Timers also measure and track the amount of elapsed time and can be used while archiving of expired documents at a preconfigured time.
Timers also measure and track the amount of elapsed time and can be used while archiving expired documents at a preconfigured time.

NOTE: When using timers, it is required that all nodes of the cluster are synchronized at computer startup, and periodically afterwards using a clock synchronization tool like NTP.

Expand Down