fix(caching): properly respect ttl for all cache levels
This commit is contained in:
@@ -38,7 +38,13 @@ export class CacheMemoryManager extends AbstractCache {
|
||||
}
|
||||
}
|
||||
|
||||
public async clean() {
|
||||
public async deleteCacheEntryByKey(keyArg: string) {
|
||||
this.fastMap.removeFromMap(keyArg);
|
||||
}
|
||||
|
||||
public async cleanOutdated() {}
|
||||
|
||||
public async cleanAll() {
|
||||
this.fastMap.clean();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user