edgeport - v1.0.6
    Preparing search index...

    Interface RedisScanPage

    One page of a RedisSession.scan.

    interface RedisScanPage {
        cursor: string;
        keys: string[];
    }
    Index
    cursor: string

    The cursor to pass to the next call; '0' once the scan is complete.

    keys: string[]

    The keys found in this page (may be empty even when the scan is not finished).