This commit is contained in:
Boki 2025-06-25 11:38:23 -04:00
parent 3a7254708e
commit b63e58784c
41 changed files with 5762 additions and 4477 deletions

View file

@ -1,4 +1,4 @@
import { NamespacedCache, CacheAdapter } from './namespaced-cache';
import { CacheAdapter, NamespacedCache } from './namespaced-cache';
import { RedisCache } from './redis-cache';
import type { CacheProvider, ICache } from './types';
@ -70,4 +70,4 @@ function createNullCache(): ICache {
disconnect: async () => {},
isConnected: () => true,
};
}
}

View file

@ -128,4 +128,4 @@ export class CacheAdapter implements CacheProvider {
isReady(): boolean {
return this.cache.isConnected();
}
}
}