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
Whenever we sync, we have to write the entire database to the disk, this can be hundreds of megs and can take some time. Instead, we should write deltas using disk_log, and load them after we load the table. We can then rewrite the entire index much more occasionally in a background job.
We can also remove the explicit calls to sync in the search store and let the backend handle writing its state.
The text was updated successfully, but these errors were encountered:
Whenever we sync, we have to write the entire database to the disk, this can be hundreds of megs and can take some time. Instead, we should write deltas using disk_log, and load them after we load the table. We can then rewrite the entire index much more occasionally in a background job.
We can also remove the explicit calls to
sync
in the search store and let the backend handle writing its state.The text was updated successfully, but these errors were encountered: