# Functions

NewCache creates a new non-thread safe LFU cache whose capacity is the default size (128).
WithCapacity is an option to set cache capacity.

# Structs

Cache is used a LFU (Least-frequently used) cache replacement policy.

# Type aliases

Option is an option for LFU cache.