Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PersistentCacheSettings

An settings object to configure an PersistentLocalCache instance.

Persistent cache cannot be used in a Node.js environment.

interface PersistentCacheSettings {
cacheSizeBytes?: number;
tabManager?: PersistentTabManager;
}

§Properties

§
cacheSizeBytes?: number
[src]

An approximate cache size threshold for the on-disk data. If the cache grows beyond this size, Firestore will start removing data that hasn't been recently used. The SDK does not guarantee that the cache will stay below that size, only that if the cache exceeds the given size, cleanup will be attempted.

The default value is 40 MB. The threshold must be set to at least 1 MB, and can be set to CACHE_SIZE_UNLIMITED to disable garbage collection.

§

Specifies how multiple tabs/windows will be managed by the SDK.