Interface ScanOptions

interface ScanOptions {
    concurrent?: boolean;
    nobins?: boolean;
    paginate?: boolean;
    scanState?: number[];
    select?: string[];
    ttl?: number;
}

Properties

concurrent?: boolean

Whether all cluster nodes should be scanned concurrently. See Scan#concurrent.

nobins?: boolean

Whether only meta data should be returned. See Scan#nobins.

paginate?: boolean

Enables pagination.

scanState?: number[]

If set to a valid serialized scan, calling Scan#foreach will allow the next page of records to be queried while preserving the progress of the previous scan. If set to null, calling Scan#foreach will begin a new scan.

select?: string[]

List of bin names to select. See Scan#select.

ttl?: number

The time-to-live (expiration) of the record in seconds. See Scan#ttl.

MMNEPVFCICPMFPCPTTAAATR