defrag firefox's sqlite databased for performance
defrag firefox's sqlite databased for performance
http://mozillalinks.org/wp/2009/08/vacu ... o-restart/
Re: defrag firefox's sqlite databased for performance
Between the two, my FF is faster. Thank you. Also, why is every single error listed in that log from this site and Q3W?
Hmmm...
Hmmm...

[color=#00FF00][b]"How do you keep the natives off the booze long enough to pass the test?" Asked of a Scottish driving instructor in 1995.[/b][/color]
Re: defrag firefox's sqlite databased for performance
because this site has had bad css for a very long time now
-
- Posts: 4022
- Joined: Sat Mar 12, 2005 6:24 pm
Re: defrag firefox's sqlite databased for performance
I have a one-liner startup script that does just that. For the curious:
Code: Select all
for DATABASE in $(find $HOME/.mozilla/firefox -name '*.sqlite'); do sqlite3 $DATABASE vacuum; done