| 23 | } |
| 24 | |
| 25 | export class MemoryCache<T> { |
| 26 | private readonly logger = new Logger(MemoryCache.name); |
| 27 | private readonly cache = new Map<string, CacheEntry<T>>(); |
| 28 | private readonly options: Required<CacheOptions>; |
nothing calls this directly
no outgoing calls
no test coverage detected