Skip to content

Commit 6a75f08

Browse files
authored
Update README.md (#695)
1 parent 03831dc commit 6a75f08

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/adapter-sql-js/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
A development package for PowerSync which uses [SQL.js](https://sql.js.org/#/) to provide a pure JavaScript SQLite implementation.
44
This eliminates the need for native dependencies and enables seamless development with Expo Go and other JavaScript-only environments.
55

6-
This adapter is specifically intended to streamline the development workflow and will be much slower than DB adapters that use native dependencies.
6+
This adapter is specifically intended to streamline the **development workflow** and will be much slower than DB adapters that use native dependencies.
77
Every write operation triggers a complete rewrite of the entire database file to persistent storage, not just the changed data.
8-
In addition to the perfomance overheads, this adapter doesn't provide any of the SQLite consistency guarantees - you may end up with missing data or a corrupted database file if the app is killed while writing to the database file.
8+
In addition to the performance overheads, this adapter doesn't provide any of the SQLite consistency guarantees - you may end up with missing data or a corrupted database file if the app is killed while writing to the database file.
99

1010
For production use, when building React Native apps we recommend switching to our [react-native-quick-sqlite](https://www.npmjs.com/package/@journeyapps/react-native-quick-sqlite) or [OP-SQLite](https://www.npmjs.com/package/@powersync/op-sqlite) adapters when making production builds as they give substantially better performance.
1111

0 commit comments

Comments
 (0)