# Packages

No description provided by the author

# Functions

AdapterWithAlgorithm sets the approach used to select a cached response to be evicted when the capacity is reached.
AdapterWithCapacity sets the maximum number of cached responses.
NewAdapter initializes memory adapter.

# Constants

LFU is the constant for Least Frequently Used.
LRU is the constant for Least Recently Used.
MFU is the constant for Most Frequently Used.
MRU is the constant for Most Recently Used.

# Structs

Adapter is the memory adapter data structure.

# Type aliases

AdapterOptions is used to set Adapter settings.
Algorithm is the string type for caching algorithms labels.