🚧 AsyncStorage
Deprecated. Use @react-native-community/async-storage instead.
AsyncStorage is an unencrypted, asynchronous, persistent, key-value storage system that is global to the app. It should be used instead of LocalStorage.
It is recommended that you use an abstraction on top of AsyncStorage instead of AsyncStorage directly for anything more than light usage since it operates globally.
On iOS, AsyncStorage is backed by native code that stores small values in a serialized dictionary and larger values in separate files. On Android, AsyncStorage will use either RocksDB or SQLite based on what is available.
The AsyncStorage JavaScript code is a facade that provides a clear JavaScript API, real Error objects, and non-multi functions. Each method in the API returns a Promise object.
Importing the AsyncStorage library:
Persisting data:
Fetching data:
Reference
Methods
getItem()
Fetches an item for a key and invokes a callback upon completion. Returns a Promise object.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
| key | string | Yes | Key of the item to fetch. |
| callback | ?(error: ?Error, result: ?string) => void | No | Function that will be called with a result if found or any error. |
setItem()
Sets the value for a key and invokes a callback upon completion. Returns a Promise object.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
| key | string | Yes | Key of the item to set. |
| value | string | Yes | Value to set for the key. |
| callback | ?(error: ?Error) => void | No | Function that will be called with any error. |
removeItem()
Removes an item for a key and invokes a callback upon completion. Returns a Promise object.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
| key | string | Yes | Key of the item to remove. |
| callback | ?(error: ?Error) => void | No | Function that will be called with any error. |
mergeItem()
Merges an existing key value with an input value, assuming both values are stringified JSON. Returns a Promise object.
NOTE: This is not supported by all native implementations.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
| key | string | Yes | Key of the item to modify. |
| value | string | Yes | New value to merge for the key. |
| callback | ?(error: ?Error) => void | No | Function that will be called with any error. |
Example:
clear()
Erases all AsyncStorage for all clients, libraries, etc. You probably don't want to call this; use removeItem or multiRemove to clear only your app's keys. Returns a Promise object.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
| callback | ?(error: ?Error) => void | No | Function that will be called with any error. |
getAllKeys()
Gets all keys known to your app; for all callers, libraries, etc. Returns a Promise object.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
| callback | ?(error: ?Error, keys: ?Array<string>) => void | No | Function that will be called with all keys found and any error. |
flushGetRequests()
Flushes any pending requests using a single batch call to get the data.
multiGet()
This allows you to batch the fetching of items given an array of key inputs. Your callback will be invoked with an array of corresponding key-value pairs found:
The method returns a Promise object.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
| keys | Array<string> | Yes | Array of key for the items to get. |
| callback | ?(errors: ?Array<Error>, result: ?Array<Array <string>>) => void | No | Function that will be called with a key-value array of the results, plus an array of any key-specific errors found. |
Example:
multiSet()
Use this as a batch operation for storing multiple key-value pairs. When the operation completes you'll get a single callback with any errors:
The method returns a Promise object.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
| keyValuePairs | Array<Array <string>> | Yes | Array of key-value array for the items to set. |
| callback | ?(errors: ?Array<Error>) => void | No | Function that will be called with an array of any key-specific errors found. |
multiRemove()
Call this to batch the deletion of all keys in the keys array. Returns a Promise object.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
| keys | Array<string> | Yes | Array of key for the items to delete. |
| callback | ?(errors: ?Array<Error>) => void | No | Function that will be called an array of any key-specific errors found. |
Example:
multiMerge()
Batch operation to merge in existing and new values for a given set of keys. This assumes that the values are stringified JSON. Returns a Promise object.
NOTE: This is not supported by all native implementations.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
| keyValuePairs | Array<Array <string>> | Yes | Array of key-value array for the items to merge. |
| callback | ?(errors: ?Array<Error>) => void | No | Function that will be called with an array of any key-specific errors found. |
Example: