2021-03-18 02:49:14 +01:00
|
|
|
export class Cache<T> {
|
|
|
|
private cache: Map<string | null, { date: number; value: T; }>;
|
|
|
|
private lifetime: number;
|
|
|
|
|
|
|
|
constructor(lifetime: Cache<never>['lifetime']) {
|
2021-03-18 02:54:39 +01:00
|
|
|
this.cache = new Map();
|
2021-03-18 02:49:14 +01:00
|
|
|
this.lifetime = lifetime;
|
|
|
|
}
|
|
|
|
|
2021-03-18 02:55:51 +01:00
|
|
|
public set(key: string | null, value: T): void {
|
2021-03-18 02:49:14 +01:00
|
|
|
this.cache.set(key, {
|
|
|
|
date: Date.now(),
|
|
|
|
value
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public get(key: string | null): T | null {
|
|
|
|
const cached = this.cache.get(key);
|
|
|
|
if (cached == null) return null;
|
|
|
|
if ((Date.now() - cached.date) > this.lifetime) {
|
|
|
|
this.cache.delete(key);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return cached.value;
|
|
|
|
}
|
|
|
|
}
|