mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 14:43:24 +00:00
11 lines
258 B
TypeScript
11 lines
258 B
TypeScript
import { BentoCache, bentostore } from 'bentocache';
|
|
import { memoryDriver } from 'bentocache/drivers/memory';
|
|
|
|
export const cache = new BentoCache({
|
|
default: 'cache',
|
|
|
|
stores: {
|
|
cache: bentostore().useL1Layer(memoryDriver({ maxSize: 10_000 })),
|
|
},
|
|
});
|