iceshrimp-legacy/packages/backend/src/misc/cache.ts

89 lines
2.1 KiB
TypeScript
Raw Normal View History

2021-03-18 02:49:14 +01:00
export class Cache<T> {
2023-01-13 05:40:33 +01:00
public cache: Map<string | null, { date: number; value: T }>;
2021-03-18 02:49:14 +01:00
private lifetime: number;
2023-01-13 05:40:33 +01:00
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(),
2021-12-09 15:58:30 +01:00
value,
2021-03-18 02:49:14 +01:00
});
}
public get(key: string | null): T | undefined {
2021-03-18 02:49:14 +01:00
const cached = this.cache.get(key);
if (cached == null) return undefined;
2023-01-13 05:40:33 +01:00
if (Date.now() - cached.date > this.lifetime) {
2021-03-18 02:49:14 +01:00
this.cache.delete(key);
return undefined;
2021-03-18 02:49:14 +01:00
}
return cached.value;
}
public delete(key: string | null) {
this.cache.delete(key);
}
2022-03-20 17:22:00 +01:00
/**
* fetcherを呼び出して結果をキャッシュ&
* optional: キャッシュが存在してもvalidatorでfalseを返すとキャッシュ無効扱いにします
*/
2023-01-13 05:40:33 +01:00
public async fetch(
key: string | null,
fetcher: () => Promise<T>,
validator?: (cachedValue: T) => boolean,
): Promise<T> {
const cachedValue = this.get(key);
if (cachedValue !== undefined) {
2022-03-20 17:22:00 +01:00
if (validator) {
if (validator(cachedValue)) {
// Cache HIT
return cachedValue;
}
} else {
// Cache HIT
return cachedValue;
}
}
// Cache MISS
const value = await fetcher();
this.set(key, value);
return value;
}
/**
* fetcherを呼び出して結果をキャッシュ&
* optional: キャッシュが存在してもvalidatorでfalseを返すとキャッシュ無効扱いにします
*/
2023-01-13 05:40:33 +01:00
public async fetchMaybe(
key: string | null,
fetcher: () => Promise<T | undefined>,
validator?: (cachedValue: T) => boolean,
): Promise<T | undefined> {
const cachedValue = this.get(key);
if (cachedValue !== undefined) {
if (validator) {
if (validator(cachedValue)) {
// Cache HIT
return cachedValue;
}
} else {
// Cache HIT
return cachedValue;
}
}
// Cache MISS
const value = await fetcher();
if (value !== undefined) {
this.set(key, value);
}
return value;
}
2021-03-18 02:49:14 +01:00
}