Meshpocalypse Semantic
    Preparing search index...

    Interface RedisKeyPersistenceAdapterOptions

    interface RedisKeyPersistenceAdapterOptions {
        client: RedisClientType;
        key?: string;
        ttlSeconds?: number;
    }
    Index

    Properties

    client: RedisClientType

    A connected Redis/Valkey client. The caller is responsible for managing the connection lifecycle.

    key?: string

    Redis key under which the key set is stored. Default: 'mesh-semantic:identity:keys'

    ttlSeconds?: number

    Optional TTL in seconds. If omitted, keys are stored without expiry.