Added cache busting option for devs
All checks were successful
Pull Request CI / Merge Check (pull_request) Successful in 3m44s

This commit is contained in:
2026-03-08 10:34:29 -04:00
parent ef3cbbf370
commit 0cc327a9c4
7 changed files with 117 additions and 2 deletions

View File

@@ -16,4 +16,14 @@ export class CacheService<Key, Value> {
public Invalidate(key: Key): boolean {
return this.cacheMap.delete(key);
}
public Size(): number {
return this.cacheMap.size;
}
public Clear(): number {
const priorSize = this.cacheMap.size;
this.cacheMap.clear();
return priorSize;
}
}