{"library":"nuxt-ssr-cache","title":"Nuxt SSR Cache","description":"nuxt-ssr-cache v1.5.2 is a cache middleware for Nuxt.js server-side rendering. It supports multiple cache stores: in-memory, Redis, Memcached, and layered multi-cache. The package allows prefixing cache keys by host, custom key functions, and version-based automatic cache purging on deployment. It is designed for Nuxt.js applications needing to reduce SSR load by caching rendered pages. The library has been stable since its last release but is not frequently updated. It relies on the Nuxt module system and optional peer dependencies for Redis and Memcached stores.","language":"javascript","status":"maintenance","last_verified":"Sat Apr 25","install":{"commands":["npm install nuxt-ssr-cache"],"cli":null},"imports":["// Add to modules in nuxt.config.js: 'nuxt-ssr-cache'"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"// nuxt.config.js\nmodule.exports = {\n  version: '1.0.0',\n  modules: ['nuxt-ssr-cache'],\n  cache: {\n    useHostPrefix: false,\n    pages: ['/', '/about'],\n    store: {\n      type: 'memory',\n      max: 100,\n      ttl: 60\n    }\n  }\n}","lang":"javascript","description":"Configure nuxt-ssr-cache as a Nuxt module with in-memory cache for root and about pages, 60-second TTL.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}