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:
Dan Stillman 2013-11-16 15:45:23 -05:00
parent 4aa3e77aeb
commit fb03c87305

View file

@ -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();