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

MemoryLocalCache

Provides an in-memory cache to the SDK. This is the default cache unless explicitly configured otherwise.

To use, create an instance using the factory function {@link memoryLocalCache()}, then set the instance to FirestoreSettings.cache and call initializeFirestore using the settings object.

interface MemoryLocalCache {
kind: "memory";
}

§Properties

§
kind: "memory"
[src]