type Cacheable interface {
// Set sets a value in the cache with the given key Set(key string, value interface{})
// Get gets a value from the cache with the given key Get(key string) (interface{}, bool)
// Stop stops the cache and clears any goroutines Stop()
}