blob: 75122bfb9b93b36dec57c7fa40e83224b1dd9e11 [file] [log] [blame]
// Package cache defines an interface for an LRU cache.
package cache
// Cache in an interface for an LRU cache.
type Cache interface {
// Add adds a value to the cache.
Add(key string)
// Exists returns true if the key is found in the cache.
Exists(key string) bool
}