misskey/packages/backend/src/misc/cache.ts

175 lines
4.3 KiB
TypeScript
Raw Normal View History

import { bindThis } from '@/decorators.js';
2023-02-04 03:40:40 +00:00
// TODO: メモリ節約のためあまり参照されないキーを定期的に削除できるようにする?
2023-03-24 07:43:42 +00:00
export class KVCache<T> {
public cache: Map<string | null, { date: number; value: T; }>;
2021-03-18 01:49:14 +00:00
private lifetime: number;
2023-03-24 07:43:42 +00:00
constructor(lifetime: KVCache<never>['lifetime']) {
2021-03-18 01:54:39 +00:00
this.cache = new Map();
2021-03-18 01:49:14 +00:00
this.lifetime = lifetime;
}
@bindThis
2021-03-18 01:55:51 +00:00
public set(key: string | null, value: T): void {
2021-03-18 01:49:14 +00:00
this.cache.set(key, {
date: Date.now(),
2021-12-09 14:58:30 +00:00
value,
2021-03-18 01:49:14 +00:00
});
}
@bindThis
public get(key: string | null): T | undefined {
2021-03-18 01:49:14 +00:00
const cached = this.cache.get(key);
if (cached == null) return undefined;
2021-03-18 01:49:14 +00:00
if ((Date.now() - cached.date) > this.lifetime) {
this.cache.delete(key);
return undefined;
2021-03-18 01:49:14 +00:00
}
return cached.value;
}
@bindThis
public delete(key: string | null) {
this.cache.delete(key);
}
2022-03-20 16:22:00 +00:00
/**
* fetcherを呼び出して結果をキャッシュ&
* optional: キャッシュが存在してもvalidatorでfalseを返すとキャッシュ無効扱いにします
*/
@bindThis
2022-03-20 16:22:00 +00: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 16:22:00 +00: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を返すとキャッシュ無効扱いにします
*/
@bindThis
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 01:49:14 +00:00
}
2023-03-24 07:43:42 +00:00
export class Cache<T> {
private cachedAt: number | null = null;
private value: T | undefined;
private lifetime: number;
constructor(lifetime: Cache<never>['lifetime']) {
this.lifetime = lifetime;
}
@bindThis
public set(value: T): void {
this.cachedAt = Date.now();
this.value = value;
}
@bindThis
public get(): T | undefined {
if (this.cachedAt == null) return undefined;
if ((Date.now() - this.cachedAt) > this.lifetime) {
this.value = undefined;
this.cachedAt = null;
return undefined;
}
return this.value;
}
@bindThis
public delete() {
this.value = undefined;
this.cachedAt = null;
}
/**
* fetcherを呼び出して結果をキャッシュ&
* optional: キャッシュが存在してもvalidatorでfalseを返すとキャッシュ無効扱いにします
*/
@bindThis
public async fetch(fetcher: () => Promise<T>, validator?: (cachedValue: T) => boolean): Promise<T> {
const cachedValue = this.get();
if (cachedValue !== undefined) {
if (validator) {
if (validator(cachedValue)) {
// Cache HIT
return cachedValue;
}
} else {
// Cache HIT
return cachedValue;
}
}
// Cache MISS
const value = await fetcher();
this.set(value);
return value;
}
/**
* fetcherを呼び出して結果をキャッシュ&
* optional: キャッシュが存在してもvalidatorでfalseを返すとキャッシュ無効扱いにします
*/
@bindThis
public async fetchMaybe(fetcher: () => Promise<T | undefined>, validator?: (cachedValue: T) => boolean): Promise<T | undefined> {
const cachedValue = this.get();
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(value);
}
return value;
}
}