Meshpocalypse Semantic
    Preparing search index...

    Interface RedisPersistenceAdapterOptions

    interface RedisPersistenceAdapterOptions {
        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 ATF state is stored. Default: 'mesh-semantic:atf:state'

    ttlSeconds?: number

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