@triply/triplydb
    Preparing search index...

    Interface CacheKey

    What identifies a cached response: the request it answered.

    interface CacheKey {
        config?: RequestInit;
        url: string;
    }
    Index
    config?: RequestInit

    The fetch options it was requested with, when it had any.

    url: string

    The URL that was requested.