vuex-cache
When vuex action fetch some data by request remote api, vuex-cache can store the action result, when next time the same action runs, it will not make a new request and just return the cached result.
Compatibility
- Any Vue version, since
vuex-cache
just deals with Vuex;
- Vuex versions 1, 2 and 3.
Installation
vuex-cache
is published in the NPM registry and can be installed using any compatible package manager.
npm install vuex-cache --save
yarn add vuex-cache
NEW FEATURE, add timeout
option
store.cache.dispatch({
type: ACTION_NAME,
timeout: 100,
payload: { ... }
})
store.cache.dispatch(ACTION_NAME, payload, {
timeout: 100,
})
after the timeout
time, run store.cache.dispatch(...)
will rerun the real dispatch code.
NOTICE for timeout
option
Because the js execution also spends time, so the timeout
maybe not very accurate for computer time. For example
cache for 100 millisecond
store.cache.dispatch({
type: ACTION_NAME,
timeout: 100,
})
... after 99 millisecond
store.cache.dispatch({
type: ACTION_NAME,
timeout: 100,
})
In logic, the cache is not out of time, and the real dispatch should not run. But the cache.dispatch
may cost 1 or more milliseconds for executing, so the real dispatch may or may not execute.
For human time, the precision should be enough.
Add default timeout option when create the store
const store = new Vuex.Store({
plugins: [vuexCache({ timeout: 2000 })],
...
})
the default timeout could be overwrite by each dispatch revoke.
usage
import Vuex from 'vuex'
import vuexCache from 'vuex-cache'
const store = new Vuex.Store({
state: {
...
},
plugins: [vuexCache],
mutations: {
...
},
actions: {
...
}
})
store.cache.dispatch('LIST')
api
NOTICE: after update to 1.0.0, main api is different from the previous version 0.3.1
From version 1.0.0 your env should has Map object, or import Map from babel-polyfill
Thanks VitorLuizC
cacheDispatch will cache the result, so do not use it to make some actions with different params, when params change, cacheDispatch would still return the first cached result, and the data in store will not change.
From version 1.1.0 it could cache ACTION_NAME with or without params.
Thanks the idea by eele94
NOTICE: When with object param, the param will be converted to JSON for the cache key, so be careful the object key order.
Object with different key order will transfer to different JSON string, and will generate independent cache.
JSON.stringify({a: 1, b: 2})
JSON.stringify({b: 2, a: 1})
With or without param, cacheDispatch will create independent cache.
When with object param like
{
type: ACTION_NAME,
param: {...}
}
vuex-cache use JSON.stringify to generate the cache key, so the object do not must be the same object, just with same structure it will be dill with to the same cache.
store.cache.dispatch(ACTION_NAME)
store.cache.dispatch(ACTION_NAME, param)
store.cache.dispatch({
type: ACTION_NAME,
param: {...}
})
params is same with vuex store.dispatch
store.cache.delete(ACTION_NAME)
store.cache.delete(ACTION_NAME, param)
store.cache.delete({
type: ACTION_NAME,
param: {...}
})
remove cached action, will NOT remove the data in store. when call cacheDispatch with same type, the request in that action will run again.
store.cache.has(ACTION_NAME)
store.cache.has(ACTION_NAME, param)
store.cache.has({
type: ACTION_NAME,
param: {...}
})
return bool if ACTION_NAME has been cached
store.cache.clear()
clear all cached keys