nuxt-cache-ssr
Advanced tools
Comparing version
import * as _nuxt_schema from '@nuxt/schema'; | ||
interface ModuleOptions { | ||
addPlugin: boolean; | ||
enabled: boolean; | ||
} | ||
@@ -6,0 +6,0 @@ declare const _default: _nuxt_schema.NuxtModule<ModuleOptions>; |
@@ -7,3 +7,6 @@ { | ||
}, | ||
"version": "1.0.4" | ||
"default": { | ||
"enabled": true | ||
}, | ||
"version": "1.0.5" | ||
} |
@@ -0,1 +1,5 @@ | ||
interface CacheOptions { | ||
max: number; | ||
ttl: number; | ||
} | ||
declare class InMemoryCache { | ||
@@ -6,5 +10,5 @@ cached: any; | ||
set(key: string, value: any): Promise<void>; | ||
init(): Promise<void>; | ||
init(options: CacheOptions): Promise<void>; | ||
} | ||
declare const _default: InMemoryCache; | ||
export default _default; |
{ | ||
"name": "nuxt-cache-ssr", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -6,2 +6,10 @@ # nuxt-cache-ssr | ||
### TODO | ||
- [x] In Memory cache options | ||
- [ ] Regex for Pages | ||
- [x] Custom Key for Page Cache | ||
- [ ] Redis Cache | ||
- [x] option to disable per enviroment | ||
## Setup | ||
@@ -22,3 +30,14 @@ ```npm install nuxt-cache-ssr``` | ||
cache: { | ||
// Can be disable per enviroment, like in dev | ||
enabled: true, | ||
store: { | ||
// Plceholder for store type, will be usable after Redis Release | ||
type: 'memory', | ||
// maximum number of pages to store in memory | ||
// if limit is reached, least recently used page | ||
// is removed. | ||
max: 500, | ||
// number of Millisecond to store this page in cache | ||
ttl: 1000 * 60 // 1 Minute | ||
}, | ||
pages: [ | ||
@@ -72,8 +91,1 @@ // these are prefixes of pages that need to be cached | ||
``` | ||
### TODO | ||
- [ ] In Memory cache options | ||
- [ ] Regex for Pages | ||
- [x] Custom Key for Page Cache | ||
- [ ] Redis Cache |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
22073
4.29%320
5.96%89
17.11%