You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs-src/rx-storage-dexie.md
+4-5
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
# RxStorage Dexie.js
2
2
3
-
Instead of using PouchDB as underlying storage engine, you can also use [Dexie.js](https://github.com/dexie/Dexie.js).
4
-
Dexie.js is a minimal wrapper around IndexedDB that has a good performance.
3
+
To store the data inside of IndexedDB in the browser, you can also use the [Dexie.js](https://github.com/dexie/Dexie.js)[RxStorage](./rx-storage.md).
5
4
6
-
For the Dexie based `RxStorage`, we use the [mingo](https://github.com/kofrasa/mingo) query handler. And a copy of the query planner from the [PouchDB-find](https://github.com/pouchdb/pouchdb/tree/master/packages/node_modules/pouchdb-find) plugin.
5
+
Dexie.js is a minimal wrapper around IndexedDB that has a good performance.
6
+
For the Dexie based `RxStorage`, we use the [mingo](https://github.com/kofrasa/mingo) query handler.
7
7
8
8
**IMPORTANT:** The Dexie.js `RxStorage` is in **beta** mode. It may get breaking changes in any minor new RxDB version. Use at your own risk.
9
9
@@ -15,8 +15,7 @@ For the Dexie based `RxStorage`, we use the [mingo](https://github.com/kofrasa/m
15
15
## Cons
16
16
- Does not support CouchDB replication.
17
17
- It does not support attachments. (Make a pull request)
18
-
- Running many operations can be slow because the underlying [IndexedDB is slow](./slow-indexeddb.md).
19
-
18
+
- Does not use a [Batched Cursor](./slow-indexeddb.md) which makes it slower then the [IndexedDB RxStorage](./rx-storage-indexeddb.md).
0 commit comments