()
| 94 | } |
| 95 | |
| 96 | override statString(): string { |
| 97 | return ( |
| 98 | `${super.statString()}, LRU has ${this.cache.size} item(s) ` + |
| 99 | `totalling ${this.cache.calculatedSize} bytes on disk` |
| 100 | ); |
| 101 | } |
| 102 | |
| 103 | override async getInternal(key: string): Promise<GetResult> { |
| 104 | const cached = this.cache.get(key); |
nothing calls this directly
no test coverage detected