Disable full-text purging, for now
This isn't technically any slower than before, but if people were using multiple computers, they might not have had their entire full-text index on a single computer before full-text syncing.
This commit is contained in:
parent
4aa3e77aeb
commit
fb03c87305
1 changed files with 2 additions and 1 deletions
|
@ -1965,7 +1965,8 @@ Components.utils.import("resource://gre/modules/Services.jsm");
|
|||
this.purgeDataObjects = function (skipStoragePurge) {
|
||||
Zotero.Creators.purge();
|
||||
Zotero.Tags.purge();
|
||||
Zotero.Fulltext.purgeUnusedWords();
|
||||
// TEMP: Disabled until we have async DB (and maybe SQLite FTS)
|
||||
//Zotero.Fulltext.purgeUnusedWords();
|
||||
Zotero.Items.purge();
|
||||
// DEBUG: this might not need to be permanent
|
||||
Zotero.Relations.purge();
|
||||
|
|
Loading…
Reference in a new issue