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

MemoryEagerGarbageCollector

A garbage collector deletes documents whenever they are not part of any active queries, and have no local mutations attached to them.

This collector tries to ensure lowest memory footprints from the SDK, at the risk of documents not being cached for offline queries or for direct queries to the cache.

Use factory function {@link memoryEagerGarbageCollector()} to create an instance of this collector.

interface MemoryEagerGarbageCollector {
kind: "memoryEager";
}

§Properties

§
kind: "memoryEager"
[src]