Boost your Firefox initial loading speed

laetus

Registered Member
Joined
Apr 4, 2009
Messages
87
Reaction score
82
1. Download latest version of SQLite client from
Code:
http://sqlite.org/download.html
. Get binary for your OS. Put the binary into your system directory on Windows (C:\Windows f.e.) or into binary dir on *nix (and remember the path);

1.2. For Windows.
Create bat file with the following contents:

Code:
cd %APPDATA%\Mozilla\Firefox\Profiles\*.default
for %%i in (*.sqlite) do @echo VACUUM; | sqlite3 %%i


1.2 For *nix (check path to the sqlite binary):

Code:
cd ~/.mozilla/firefox/*.default/
for i in *.sqlite; do echo "VACUUM;" | /path/to/sqlite/binary/sqlite3 $i ; done


2. Shut down yor FF browser and run *.bat/*.sh/commands.

3. Open FF, go to about:config and add logical parameter jit=true

That's all. Now your FF should fly :)
 
Back
Top