| 14 | } |
| 15 | |
| 16 | type twoLevelClient struct { |
| 17 | inMemoryCache *InMemoryCache |
| 18 | externalCache CacheClient |
| 19 | } |
| 20 | |
| 21 | func (c *twoLevelClient) Rename(oldKey string, newKey string, expiration time.Duration) error { |
| 22 | err := c.inMemoryCache.Rename(oldKey, newKey, expiration) |
nothing calls this directly
no outgoing calls
no test coverage detected