couchbase
    Preparing search index...

    Interface RemoveOptions

    interface RemoveOptions {
        cas?: CasInput;
        durabilityLevel?: DurabilityLevel;
        durabilityPersistTo?: number;
        durabilityReplicateTo?: number;
        timeout?: number;
    }
    Index

    Properties

    cas?: CasInput

    If specified, indicates that operation should be failed if the CAS has changed from this value, indicating that the document has changed.

    durabilityLevel?: DurabilityLevel

    Specifies the level of synchronous durability for this operation.

    durabilityPersistTo?: number

    Specifies the number of nodes this operation should be persisted to before it is considered successful. Note that this option is mutually exclusive of durabilityLevel.

    durabilityReplicateTo?: number

    Specifies the number of nodes this operation should be replicated to before it is considered successful. Note that this option is mutually exclusive of durabilityLevel.

    timeout?: number

    The timeout for this operation, represented in milliseconds.