Replies: 1 comment
-
|
TBH I have never tested that explicitly. All I can say is that we never received any reports regarding this. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
We recently switched our mobile to Capacitor from Cordova, and we use this plugin as well as TypeORM.
When we were using the cordova-sqlite-storage plugin, we had to be concerned with concurrency and multiple transactions corrupting each other, as described here:
typeorm/typeorm#1884
brody2consult/cordova-sqlite-storage#863
brody2consult/cordova-sqlite-storage#864
We were able to avoid this issue by implementing a wrapper executor to sequentially queue database requests.
My question is: Do we need to be concerned with concurrency and corruption with this capacitor sqlite plugin? If we do not need to be concerned, then we could remove this wrapper executor.
Thank you.
Beta Was this translation helpful? Give feedback.
All reactions