From f1924acdeace699df3020d7207aedf51c917952c Mon Sep 17 00:00:00 2001 From: yokoffing <11689349+yokoffing@users.noreply.github.com> Date: Wed, 21 Aug 2024 10:21:52 -0400 Subject: [PATCH] Updated Optional Hardening (markdown) --- Optional-Hardening.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Optional-Hardening.md b/Optional-Hardening.md index 61de668..6bca916 100644 --- a/Optional-Hardening.md +++ b/Optional-Hardening.md @@ -109,12 +109,9 @@ user_pref("browser.download.always_ask_before_handling_new_types", true); *** ### Disk Cache -Keep in mind that disabling the disk cache is only available on Firefox. It is consider a non-issue in any other browser. +Keep in mind that disabling the disk cache is only available on Firefox. It is not an option in any other browser. -Only disable the disk cache if your machine has or uses: -* **[HDD](https://www.pcmag.com/encyclopedia/term/hard-disk).** Hard drive failure with modern SSDs is [non-existent](https://www.reddit.com/r/firefox/comments/xxj06q/comment/irfidb4/). -* More than **300 Mbps** internet speed. Otherwise, it's probably faster to retrieve information from disk ([test](https://fast.com/)). -* Or ultimately, you believe disabling it helps your privacy or performance. +Disable the disk cache if you believe disabling it helps your privacy or performance. ```javascript // PREF: disable disk cache user_pref("browser.cache.disk.enable", false);