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
The SQLite index is so slow that it is a blocking factor. Looking through the code, there are several key mistakes:
prepared statements are re-created every transaction, rather than creating once and binding values.
When doing a single meta-data operation (adding or deleting one object), then it is fine to make that a single transaction. When replaying an long list of operations, these should be batched into a single transaction.
The text was updated successfully, but these errors were encountered:
This problem was addressed mainly by 481fc62, and also the following commit which used PRAGMA options to sqlite to configure it for better performance.
The SQLite index is so slow that it is a blocking factor. Looking through the code, there are several key mistakes:
The text was updated successfully, but these errors were encountered: