bun-server-cache
Installation
SKILL.md
Bun Server Cache
Setup CacheModule
import { Module, CacheModule } from "@dangao/bun-server";
// Memory cache (default)
CacheModule.forRoot({
ttl: 60, // Default TTL in seconds
max: 1000, // Max cache entries
});