CacheBackendConfiguration represents the configuration of a cache backend.
| 33 | |
| 34 | // CacheBackendConfiguration represents the configuration of a cache backend. |
| 35 | type CacheBackendConfiguration interface { |
| 36 | New() (cachestore.Store, error) |
| 37 | } |
| 38 | |
| 39 | // MemoryCacheConfiguration is the configuration for an in-memory cache. There |
| 40 | // is no configuration. |
no outgoing calls
no test coverage detected