2023-04-04 11:32:09 +03:00
|
|
|
import Redis from 'ioredis';
|
2022-12-04 08:03:09 +02:00
|
|
|
import { bindThis } from '@/decorators.js';
|
|
|
|
|
2023-04-04 11:32:09 +03:00
|
|
|
// redis通すとDateのインスタンスはstringに変換されるので
|
|
|
|
type Serialized<T> = {
|
|
|
|
[K in keyof T]:
|
|
|
|
T[K] extends Date
|
|
|
|
? string
|
|
|
|
: T[K] extends (Date | null)
|
|
|
|
? (string | null)
|
|
|
|
: T[K] extends Record<string, any>
|
|
|
|
? Serialized<T[K]>
|
|
|
|
: T[K];
|
|
|
|
};
|
|
|
|
|
|
|
|
export class RedisKVCache<T> {
|
|
|
|
private redisClient: Redis.Redis;
|
|
|
|
private name: string;
|
|
|
|
private lifetime: number;
|
|
|
|
private memoryCache: MemoryKVCache<T>;
|
|
|
|
|
|
|
|
constructor(redisClient: RedisKVCache<never>['redisClient'], name: RedisKVCache<never>['name'], lifetime: RedisKVCache<never>['lifetime'], memoryCacheLifetime: number) {
|
|
|
|
this.redisClient = redisClient;
|
|
|
|
this.name = name;
|
|
|
|
this.lifetime = lifetime;
|
|
|
|
this.memoryCache = new MemoryKVCache(memoryCacheLifetime);
|
|
|
|
}
|
|
|
|
|
|
|
|
@bindThis
|
|
|
|
public async set(key: string, value: T): Promise<void> {
|
|
|
|
this.memoryCache.set(key, value);
|
|
|
|
if (this.lifetime === Infinity) {
|
|
|
|
await this.redisClient.set(
|
|
|
|
`kvcache:${this.name}:${key}`,
|
|
|
|
JSON.stringify(value),
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
await this.redisClient.set(
|
|
|
|
`kvcache:${this.name}:${key}`,
|
|
|
|
JSON.stringify(value),
|
|
|
|
'ex', Math.round(this.lifetime / 1000),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@bindThis
|
|
|
|
public async get(key: string): Promise<Serialized<T> | T | undefined> {
|
|
|
|
const memoryCached = this.memoryCache.get(key);
|
|
|
|
if (memoryCached !== undefined) return memoryCached;
|
|
|
|
|
|
|
|
const cached = await this.redisClient.get(`kvcache:${this.name}:${key}`);
|
|
|
|
if (cached == null) return undefined;
|
|
|
|
return JSON.parse(cached);
|
|
|
|
}
|
|
|
|
|
|
|
|
@bindThis
|
|
|
|
public async delete(key: string): Promise<void> {
|
|
|
|
this.memoryCache.delete(key);
|
|
|
|
await this.redisClient.del(`kvcache:${this.name}:${key}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* キャッシュがあればそれを返し、無ければfetcherを呼び出して結果をキャッシュ&返します
|
|
|
|
* optional: キャッシュが存在してもvalidatorでfalseを返すとキャッシュ無効扱いにします
|
|
|
|
*/
|
|
|
|
@bindThis
|
|
|
|
public async fetch(key: string, fetcher: () => Promise<T>, validator?: (cachedValue: Serialized<T> | T) => boolean): Promise<Serialized<T> | T> {
|
|
|
|
const cachedValue = await 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();
|
|
|
|
this.set(key, value);
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-04 05:40:40 +02:00
|
|
|
// TODO: メモリ節約のためあまり参照されないキーを定期的に削除できるようにする?
|
|
|
|
|
2023-04-04 09:56:47 +03:00
|
|
|
export class MemoryKVCache<T> {
|
2023-04-04 11:32:09 +03:00
|
|
|
public cache: Map<string, { date: number; value: T; }>;
|
2021-03-18 03:49:14 +02:00
|
|
|
private lifetime: number;
|
|
|
|
|
2023-04-04 09:56:47 +03:00
|
|
|
constructor(lifetime: MemoryKVCache<never>['lifetime']) {
|
2021-03-18 03:54:39 +02:00
|
|
|
this.cache = new Map();
|
2021-03-18 03:49:14 +02:00
|
|
|
this.lifetime = lifetime;
|
|
|
|
}
|
|
|
|
|
2022-12-04 08:03:09 +02:00
|
|
|
@bindThis
|
2023-04-04 11:32:09 +03:00
|
|
|
public set(key: string, value: T): void {
|
2021-03-18 03:49:14 +02:00
|
|
|
this.cache.set(key, {
|
|
|
|
date: Date.now(),
|
2021-12-09 16:58:30 +02:00
|
|
|
value,
|
2021-03-18 03:49:14 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-12-04 08:03:09 +02:00
|
|
|
@bindThis
|
2023-04-04 11:32:09 +03:00
|
|
|
public get(key: string): T | undefined {
|
2021-03-18 03:49:14 +02:00
|
|
|
const cached = this.cache.get(key);
|
2021-03-21 17:44:38 +02:00
|
|
|
if (cached == null) return undefined;
|
2021-03-18 03:49:14 +02:00
|
|
|
if ((Date.now() - cached.date) > this.lifetime) {
|
|
|
|
this.cache.delete(key);
|
2021-03-21 17:44:38 +02:00
|
|
|
return undefined;
|
2021-03-18 03:49:14 +02:00
|
|
|
}
|
|
|
|
return cached.value;
|
|
|
|
}
|
2021-03-21 17:44:38 +02:00
|
|
|
|
2022-12-04 08:03:09 +02:00
|
|
|
@bindThis
|
2023-04-04 11:32:09 +03:00
|
|
|
public delete(key: string) {
|
2021-03-21 17:44:38 +02:00
|
|
|
this.cache.delete(key);
|
|
|
|
}
|
|
|
|
|
2022-03-20 18:22:00 +02:00
|
|
|
/**
|
|
|
|
* キャッシュがあればそれを返し、無ければfetcherを呼び出して結果をキャッシュ&返します
|
|
|
|
* optional: キャッシュが存在してもvalidatorでfalseを返すとキャッシュ無効扱いにします
|
|
|
|
*/
|
2022-12-04 08:03:09 +02:00
|
|
|
@bindThis
|
2023-04-04 11:32:09 +03:00
|
|
|
public async fetch(key: string, fetcher: () => Promise<T>, validator?: (cachedValue: T) => boolean): Promise<T> {
|
2021-03-21 17:44:38 +02:00
|
|
|
const cachedValue = this.get(key);
|
|
|
|
if (cachedValue !== undefined) {
|
2022-03-20 18:22:00 +02:00
|
|
|
if (validator) {
|
|
|
|
if (validator(cachedValue)) {
|
|
|
|
// Cache HIT
|
|
|
|
return cachedValue;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Cache HIT
|
|
|
|
return cachedValue;
|
|
|
|
}
|
2021-03-21 17:44:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Cache MISS
|
|
|
|
const value = await fetcher();
|
2022-05-14 07:28:27 +03:00
|
|
|
this.set(key, value);
|
2022-03-26 12:09:57 +02:00
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* キャッシュがあればそれを返し、無ければfetcherを呼び出して結果をキャッシュ&返します
|
|
|
|
* optional: キャッシュが存在してもvalidatorでfalseを返すとキャッシュ無効扱いにします
|
|
|
|
*/
|
2022-12-04 08:03:09 +02:00
|
|
|
@bindThis
|
2023-04-04 11:32:09 +03:00
|
|
|
public async fetchMaybe(key: string, fetcher: () => Promise<T | undefined>, validator?: (cachedValue: T) => boolean): Promise<T | undefined> {
|
2022-03-26 12:09:57 +02:00
|
|
|
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);
|
|
|
|
}
|
2021-03-21 17:44:38 +02:00
|
|
|
return value;
|
|
|
|
}
|
2021-03-18 03:49:14 +02:00
|
|
|
}
|
2023-03-24 09:43:42 +02:00
|
|
|
|
2023-04-04 09:56:47 +03:00
|
|
|
export class MemoryCache<T> {
|
2023-03-24 09:43:42 +02:00
|
|
|
private cachedAt: number | null = null;
|
|
|
|
private value: T | undefined;
|
|
|
|
private lifetime: number;
|
|
|
|
|
2023-04-04 09:56:47 +03:00
|
|
|
constructor(lifetime: MemoryCache<never>['lifetime']) {
|
2023-03-24 09:43:42 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|