septiembre 13, 2005

Tuneando el Firefox

El problema que a afectado al tratamiento de URL's en Firefox hace unos días me ha recordado unos tuneos que hacen que la navegación sea mas rapida a base de abrir conexiones un poco mas rapido :)

Navegamos a: about:config

user_pref("network.http.pipelining", true);
user_pref("network.http.proxy.pipelining", true);
user_pref("network.http.pipelining.maxrequests", 8);
user_pref("network.http.max-connections", 48);
user_pref("network.http.max-connections-per-server", 16);
user_pref("network.http.max-persistent-connections-per-proxy", 16);
user_pref("network.http.max-persistent-connections-per-server", 8);
user_pref("browser.cache.memory.capacity", 65536);


Y por último la solución temporal para el fallillo:
user_pref("n
etwork.enableIDN", false)

comentarios: