A redux-persist store adaptor which uses SQLite database to persist store.
By default redux-persist uses AsyncStorage
as storage engine in react-native. This is a drop-in replacemet of AsyncStorage
.
The library is inspired by react-native-sqlite-storage
.
npm install --save redux-persist-sqlite-storage
Please do follow the installation steps to install react-native-sqlite-storage
.
First configure SQLite from below link
Follow below steps after you have successfully configured the SQLite
import SQLiteStorage from 'redux-persist-sqlite-storage';
import SQLite from 'react-native-sqlite-storage';
// Considering SQLite object is defined / imported
// Pass any valid configuration as `config` parameter applied to react-native-sqlite-storage as per above link
const storeEngine = SQLiteStorage(SQLite, config);
// Now pass the storeEngine as value of store while configuring redux-persist
const persistConfig = {
...
store: storeEngine
}
Please note that, the config
object will take any valid configuration as accepted by react-native-sqlite-storage
.
The default configuration only consider name
and location
const defaultConfig = {
name: 'sqlite-storage',
location: 'default'
};
The object return by SQLiteStorage
function has 5 methods and each of the method returns Promise
as well as callback upon completion of any operation (compatable with redux-persist 5.x.x version)
Following functions are supported
getItem(key: string, [callback]: ?(error: ?Error, result: ?string) => void)
setitem(key: string, value: string, [callback]: ?(error: ?Error) => void)
removeItem(key: string, [callback]: ?(error: ?Error) => void)
getAllKeys([callback]: ?(error: ?Error, keys: ?Array<string>) => void)
clear([callback]: ?(error: ?Error) => void)
Above methods confirms to AsyncStorage
method signatures
Examples are located at examples\rn
directory
redux-persist@4.5.0
redux-persist@5.9.1
Will support all of the methods supported by AsyncStorage.