Skip to content

Commit b8792f9

Browse files
danielroefatfingers23
authored andcommitted
refactor: unify atproto caches
1 parent 0f5887c commit b8792f9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

server/utils/cache/local.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function isCacheEntryStale(entry: LocalCachedEntry): boolean {
2323
* Local implmentation of a cache to be used during development
2424
*/
2525
export class LocalCacheAdapter implements CacheAdapter {
26-
private readonly storage = useStorage('generic-cache')
26+
private readonly storage = useStorage('atproto:generic')
2727

2828
async get<T>(key: string): Promise<T | undefined> {
2929
const result = await this.storage.getItem<LocalCachedEntry<T>>(key)

0 commit comments

Comments
 (0)