-
-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* network.buffer.cache.size causes HTML issue
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* Fastfox * | ||
* "Non ducor duco" * | ||
* priority: speedy browsing * | ||
* version: 122 * | ||
* version: 122.1 * | ||
* url: https://github.com/yokoffing/Betterfox * | ||
***************************************************************************************/ | ||
|
||
|
@@ -309,11 +309,13 @@ user_pref("image.mem.decode_bytes_at_a_time", 32768); // default=16384; alt=6553 | |
****************************************************************************/ | ||
|
||
// PREF: use bigger packets | ||
// [WARNING] Cannot open HTML files bigger than 4MB if changed [2]. | ||
// Reduce Firefox's CPU usage by requiring fewer application-to-driver data transfers. | ||
// However, it does not affect the actual packet sizes transmitted over the network. | ||
// [1] https://www.mail-archive.com/[email protected]/msg74561.html | ||
user_pref("network.buffer.cache.size", 262144); // 256 kb; default=32768 (32 kb) | ||
user_pref("network.buffer.cache.count", 128); // default=24 | ||
// [2] https://github.com/yokoffing/Betterfox/issues/279 | ||
//user_pref("network.buffer.cache.size", 262144); // 256 kb; default=32768 (32 kb) | ||
//user_pref("network.buffer.cache.count", 128); // default=24 | ||
|
||
// PREF: increase the absolute number of HTTP connections | ||
// [1] https://kb.mozillazine.org/Network.http.max-connections | ||
|
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