unified-llm-client
    Preparing search index...

    Interface RedisSessionStoreOptions

    Configuration for RedisSessionStore.

    interface RedisSessionStoreOptions {
        client: RedisSessionStoreClient;
        evalMode?: "ioredis" | "node-redis";
        keyPrefix?: string;
        maxScanIterations?: number;
        maxScanKeys?: number;
        maxScanNoProgressIterations?: number;
        now?: () => Date;
        scanCount?: number;
        ttlSeconds?: number;
    }
    Index

    Properties

    evalMode?: "ioredis" | "node-redis"

    Redis eval calling convention. Defaults to node-redis object arguments.

    keyPrefix?: string
    maxScanIterations?: number
    maxScanKeys?: number
    maxScanNoProgressIterations?: number
    now?: () => Date
    scanCount?: number
    ttlSeconds?: number