Skip to content

Add info on where data is stored #912

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions website/docs/advanced/Where-data-stored.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
id: where_data_stored
title: Where your data is stored
sidebar_label: Where data is stored
---

* **Android** - SQLite
* **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`)
* **macOS** - Same as iOS
* **Web** - window.localStorage
* **Windows** - SQLite
2 changes: 1 addition & 1 deletion website/sidebars.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
docs: {
'Getting started': ['install', 'usage', 'api', 'limits'],
Advanced: ['advanced/next', 'advanced/jest', 'advanced/brownfield', 'advanced/backup', 'advanced/executor', 'advanced/db_size'],
Advanced: ['advanced/next', 'advanced/jest', 'advanced/brownfield', 'advanced/backup', 'advanced/executor', 'advanced/db_size','advanced/where_data_stored'],
Debugging: ['debugging/communityPackages'],
Help: ['help/troubleshooting'],
},
Expand Down