Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration IndexingMode

Specifies the supported indexing modes.

property

Consistent

property

Lazy

Index

Enumeration members

Enumeration members

consistent

consistent: = "consistent"

Index is updated synchronously with a create or update operation.

With consistent indexing, query behavior is the same as the default consistency level for the container. The index is always kept up to date with the data.

lazy

lazy: = "lazy"

Index is updated asynchronously with respect to a create or update operation.

With lazy indexing, queries are eventually consistent. The index is updated when the container is idle.

none

none: = "none"

No Index is provided.

Generated using TypeDoc