Skip to content

DOCS-13725 update cursor snapshot documentation #5118

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 23, 2021
Merged
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
12 changes: 6 additions & 6 deletions source/includes/extracts-concurrency-consistency-recency.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,12 @@ content: |
indexed field on the index used by the query, then the cursor could
return the same document more than once.

If your collection has a field or fields that are
never modified, you can use a *unique* index on this field or these
fields so that the query will return each document no more than
once. Query with :method:`~cursor.hint()` to explicitly force the
query to use that index.
Queries that use :ref:`unique indexes <index-type-unique>` can, in
some cases, return duplicate values. If a cursor using a unique index
interleaves with a delete and insert of documents sharing the same
unique value, the cursor may return the same unique value twice from
different documents.

---
ref: lock-general
content: |
Expand Down