# Functions
Expiration sets the duration for items stored in the cache to expire.
Items initializes the cache with preconfigured items.
NewCache returns a new cache.
NewOptions returns a new options struct.
# Variables
DefaultCache is the default cache.
DefaultExpiration is the default duration for items stored in the cache to expire.
ErrItemExpired is returned in Cache.Get when the item found in the cache has expired.
ErrKeyNotFound is returned in Cache.Get and Cache.Delete when the provided key could not be found in cache.
# Interfaces
Cache is the interface that wraps the cache.
# Type aliases
Option manipulates the Options passed.