Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/velo/mod.ts>RemoveCause

A high-performance caching library for Deno. Supports LRU, LFU, ARC, and TinyLFU.
Latest
enum RemoveCause
import { RemoveCause } from "https://deno.land/x/velo@1.0.0/mod.ts";

The reason why a cache entry was removed.

Members

Evicted

The entry was evicted by the cache policy to maintain capacity.

Expired

The entry's expiration time has passed.

Explicit

The entry was explicitly removed by the user.

Replaced

The entry's value was replaced by the user.