fileCache implements FileCache.
| 19 | |
| 20 | // fileCache implements FileCache. |
| 21 | type fileCache struct { |
| 22 | fileCache *ristretto.Cache |
| 23 | metadataCache *SyncMap |
| 24 | path string |
| 25 | lock sync.RWMutex |
| 26 | log zerolog.Logger |
| 27 | } |
| 28 | |
| 29 | var _ Cache = &fileCache{} |
| 30 |
nothing calls this directly
no outgoing calls
no test coverage detected