@qualithm/rqlite-client - v0.2.3
    Preparing search index...

    Type Alias FreshnessOptions

    Freshness options for stale reads when using none consistency.

    The freshness value is a duration string (e.g. "1s", "5m") that specifies the maximum staleness allowed for a read.

    type FreshnessOptions = {
        freshness: string;
        freshnessStrict?: boolean;
    }
    Index

    Properties

    freshness: string

    Maximum staleness duration (e.g. "1s", "500ms", "5m").

    freshnessStrict?: boolean

    When true, require the node to have received a heartbeat within the freshness window.