
This utility comes packaged with react-query and is available under the react-query/createAsyncStoragePersister import.
createAsyncStoragePersister functionstorage to it that adheres to the AsyncStorage interface - the example below uses the async-storage from React NativepersistQueryClient functionimport AsyncStorage from '@react-native-async-storage/async-storage'import { persistQueryClient } from 'react-query/persistQueryClient'import { createAsyncStoragePersister } from 'react-query/createAsyncStoragePersister'const queryClient = new QueryClient({defaultOptions: {queries: {cacheTime: 1000 * 60 * 60 * 24, // 24 hours},},})const asyncStoragePersister = createAsyncStoragePersister({storage: AsyncStorage})persistQueryClient({queryClient,persister: asyncStoragePersister,})
Retries work the same as for a WebStoragePersister, except that they can also be asynchronous. You can also use all the predefined retry handlers.
createAsyncStoragePersisterCall this function to create an asyncStoragePersister that you can use later with persistQueryClient.
createAsyncStoragePersister(options: CreateAsyncStoragePersisterOptions)
Optionsinterface CreateAsyncStoragePersisterOptions {/** The storage client used for setting an retrieving items from cache */storage: AsyncStorage/** The key to use when storing the cache to localStorage */key?: string/** To avoid localStorage spamming,* pass a time in ms to throttle saving the cache to disk */throttleTime?: number/** How to serialize the data to storage */serialize?: (client: PersistedClient) => string/** How to deserialize the data from storage */deserialize?: (cachedString: string) => PersistedClient/** How to retry persistence on error **/retry?: AsyncPersistRetryer}interface AsyncStorage {getItem: (key: string) => Promise<string>setItem: (key: string, value: string) => Promise<unknown>removeItem: (key: string) => Promise<unknown>}
The default options are:
{key = `REACT_QUERY_OFFLINE_CACHE`,throttleTime = 1000,serialize = JSON.stringify,deserialize = JSON.parse,}
The best JavaScript newsletter! Delivered every Monday to over 76,000 devs.