Last active
April 9, 2016 10:21
-
-
Save juliojsb/adb06167d3f605a6a941c09d913871e6 to your computer and use it in GitHub Desktop.
Some tips to optimize Firefox/Iceweasel web navigators
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
These tips worked for me, but use always with caution! | |
In about:config modify the following. | |
# Pipelining and network optimizations | |
network.http.pipelining.maxrequests 8 | |
network.http.pipelining true | |
browser.display.show_image_placeholders false | |
network.http.max-persistent-connections-per-server 8 | |
browser.cache.use_new_backend 1 | |
network.dns.disableIPv6 true | |
# Disable disk cache and enable RAM cache | |
browser.cache.disk.enable false | |
browser.cache.memory.enable true | |
browser.cache.memory.capacity 65536 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment