Cache
In some cases it's useful to interact with the cache directly.
State
The cache state can be used to save the current state of the store. This is useful for SSR to rehydrate the client with state serialized in the server, or to load offline data saved locally.
// Save the current state of the store on the server
const state = store.$cache.getState()
// Restore the state of the store on the client
store.$cache.setState(state)
Clear cache
Clearing the cache is useful when you want to remove all items from the cache. This can be used for example to reset the store to its initial state after the user logs out.
store.$cache.clear()
You can listen to the afterCacheReset
hook in plugins or use store.$onCacheReset
to listen to the event when the cache is cleared.
store.$onCacheReset(() => {
console.log('Cache cleared')
})
Write items
Writing items to the cache is useful when you want to update the store with data that is not coming from a query. This can be used for example to add items from a websocket connection.
const model = store.$getModel(item)
const key = model.getKey(item)
store.$cache.writeItem({
model,
key,
item,
})
You can also use the store.<modelName>.writeItem
method:
store.User.writeItem({
id: 'abc',
name: 'John Doe',
email: 'john@acme.com',
})
To write multiple items at once, you can use the writeItems
method:
const model = store.$getModel(items[0])
const writes = items.map(item => ({
key: model.getKey(item),
value: item,
}))
store.$cache.writeItems({
model,
items: writes,
})
Delete items
Deleting items from the cache is useful when you want to remove items that are no longer needed. This can be used for example to remove items that are no longer in the store.
const model = store.$getModel(item)
const key = model.getKey(item)
store.$cache.deleteItem({
model,
key,
})
You can also use the store.<modelName>.clearItem
method:
store.User.clearItem('abc')