edgeport - v1.0.6
    Preparing search index...

    Interface RedisSetOptions

    Options for RedisSession.set.

    interface RedisSetOptions {
        ex?: number;
        exat?: number;
        keepTtl?: boolean;
        nx?: boolean;
        px?: number;
        pxat?: number;
        xx?: boolean;
    }
    Index
    ex?: number

    Expire the key after this many seconds (EX).

    exat?: number

    Expire the key at this UNIX time in seconds (EXAT).

    keepTtl?: boolean

    Retain the key's existing TTL (KEEPTTL).

    nx?: boolean

    Only set the key if it does not already exist (NX).

    px?: number

    Expire the key after this many milliseconds (PX).

    pxat?: number

    Expire the key at this UNIX time in milliseconds (PXAT).

    xx?: boolean

    Only set the key if it already exists (XX).