MCPcopy Create free account
hub / github.com/compiler-explorer/compiler-explorer / statString

Method statString

lib/cache/on-disk.ts:96–101  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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);

Callers

nothing calls this directly

Calls 1

statStringMethod · 0.65

Tested by

no test coverage detected