Couchbase .NET SDK | 3.3.5
Search Results for

    Show / Hide Table of Contents

    Enum AnalyticsScanConsistency

    Namespace: Couchbase.Analytics
    Assembly: Couchbase.NetClient.dll
    Syntax
    public enum AnalyticsScanConsistency : int

    Fields

    Name Description
    NotBounded

    The default which means that the query can return data that is currently indexed and accessible by the index or the view. The query output can be arbitrarily out-of-date if there are many pending mutations that have not been indexed by the index or the view. This consistency level is useful for queries that favor low latency and do not need precise and most up-to-date information.

    RequestPlus

    This level provides the strictest consistency level and thus executes with higher latencies than the other levels. This consistency level requires all mutations, up to the moment of the query request, to be processed before the query execution can start.

    • Improve this Doc
    • View Source
    In This Article
    Back to top © 2022 Couchbase, Inc.