@stephen-shopopop/cache
    Preparing search index...

    Interface SQLiteCacheStoreOptions

    Configuration options for SQLite cache store

    SQLiteCacheStoreOptions

    interface SQLiteCacheStoreOptions {
        filename?: string;
        maxCount?: number;
        maxEntrySize?: number;
        timeout?: number;
    }
    Index

    Properties

    filename?: string

    The name of the SQLite database file - default is ':memory:' for in-memory database

    maxCount?: number

    Maximum number of entries allowed in the cache - default is unlimited

    maxEntrySize?: number

    Maximum size of a single cache entry in bytes - default is 2GB

    timeout?: number

    Timeout duration in milliseconds for database operations