@valkey/valkey-glide
Version:
General Language Independent Driver for the Enterprise (GLIDE) for Valkey
22 lines (21 loc) • 588 B
TypeScript
/**
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/
/**
* Enum representing cache eviction policies.
*
* Eviction policies determine which entries are removed from the cache
* when the cache reaches its maximum memory limit.
*/
export declare enum EvictionPolicy {
/**
* Least Recently Used eviction policy.
* Removes the entries that have been accessed least recently.
*/
LRU = 0,
/**
* Least Frequently Used eviction policy.
* Removes the entries that have been accessed least frequently.
*/
LFU = 1
}