Algorithm is the string type for caching algorithms labels.
const (
// LRU is the constant for Least Recently Used. LRU Algorithm = "LRU"
// MRU is the constant for Most Recently Used. MRU Algorithm = "MRU"
// LFU is the constant for Least Frequently Used. LFU Algorithm = "LFU"
// MFU is the constant for Most Frequently Used. MFU Algorithm = "MFU"
)