mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-09 07:03:25 +00:00
11 lines
263 B
TypeScript
11 lines
263 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 })),
|
|
},
|
|
});
|