Interface RedisConnectOptions

    Connection options for EddyqRedis.connect. Only the line/hash-tag namespace is configurable in PR2; connection pooling is internal to the redis crate's ConnectionManager.

    interface RedisConnectOptions {
        line?: string;
    }
    Index

    Properties

    Properties

    line?: string

    Hash-tag namespace ("line") that scopes every key. Default "main". Use distinct lines to isolate multiple logical queues on one Redis.