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

MemoryLruGarbageCollector

A garbage collector deletes Least-Recently-Used documents in multiple batches.

This collector is configured with a target size, and will only perform collection when the cached documents exceed the target size. It avoids querying backend repeated for the same query or document, at the risk of having a larger memory footprint.

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

interface MemoryLruGarbageCollector {
kind: "memoryLru";
}

§Properties

§
kind: "memoryLru"
[src]