memStore is the default in-memory store for the cache entries.
| 16 | |
| 17 | // memStore is the default in-memory store for the cache entries. |
| 18 | type memStore struct { |
| 19 | entries map[string]*Entry |
| 20 | mu sync.RWMutex |
| 21 | } |
| 22 | |
| 23 | var _ Store = (*memStore)(nil) |
| 24 |
nothing calls this directly
no outgoing calls
no test coverage detected