You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-15 23:00:36 +02:00
Mobile: Fixes #1690 (maybe): Process less data simultaneously when building search index to prevent out of memory errors
This commit is contained in:
@ -131,7 +131,7 @@ class SearchEngine {
|
||||
WHERE item_type = ?
|
||||
AND id > ?
|
||||
ORDER BY id ASC
|
||||
LIMIT 100
|
||||
LIMIT 10
|
||||
`, [BaseModel.TYPE_NOTE, lastChangeId]);
|
||||
|
||||
const maxRow = await ItemChange.db().selectOne('SELECT max(id) FROM item_changes');
|
||||
|
Reference in New Issue
Block a user