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
I saw some reports that the UI will be blocked when large batches of data are being loaded into the database. This problem cannot be solved properly without introducing worker threads. The workaround is to setup a timer mechanism that saves the data in small pieces and reports by callback when it is done.
A solution by using either a timer mechanism or worker threads can be done equally well in the user code, outside the SQLitePlugin Javascript code.
The text was updated successfully, but these errors were encountered:
For batches of smaller records it is possible to solve this issue with a timer. If there are really large record sizes then the work would have to be done in another thread. I do not promise when or even if I will make the solution.
I saw some reports that the UI will be blocked when large batches of data are being loaded into the database. This problem cannot be solved properly without introducing worker threads. The workaround is to setup a timer mechanism that saves the data in small pieces and reports by callback when it is done.
A solution by using either a timer mechanism or worker threads can be done equally well in the user code, outside the SQLitePlugin Javascript code.
The text was updated successfully, but these errors were encountered: