Skip to content

Commit 7adb803

Browse files
authored
docs: add info on where data is stored (#912)
This is a docs change and relates to issue #905 - adding information on where data is stored. I placed it under the advanced category in the sidebar.
1 parent 689fb06 commit 7adb803

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
id: where_data_stored
3+
title: Where your data is stored
4+
sidebar_label: Where data is stored
5+
---
6+
7+
* **Android** - SQLite
8+
* **iOS** - small values (not exceeding 1024 characters) are serialized and stored in a common `manifest.json` file, while larger values are stored in individual, dedicated files (named as MD5 hashed `key`)
9+
* **macOS** - Same as iOS
10+
* **Web** - window.localStorage
11+
* **Windows** - SQLite

website/sidebars.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module.exports = {
22
docs: {
33
'Getting started': ['install', 'usage', 'api', 'limits'],
4-
Advanced: ['advanced/next', 'advanced/jest', 'advanced/brownfield', 'advanced/backup', 'advanced/executor', 'advanced/db_size'],
4+
Advanced: ['advanced/next', 'advanced/jest', 'advanced/brownfield', 'advanced/backup', 'advanced/executor', 'advanced/db_size','advanced/where_data_stored'],
55
Debugging: ['debugging/communityPackages'],
66
Help: ['help/troubleshooting'],
77
},

0 commit comments

Comments
 (0)