summaryrefslogtreecommitdiff
path: root/static/articles
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2021-01-01 22:56:14 -0500
committerDaniel Micay <danielmicay@gmail.com>2021-01-01 22:56:14 -0500
commit08b5fbe328b3b234d9ee76dd19ddb8598fca5125 (patch)
tree6883a888c2f7dee13807b90f1bf7abfcb8856189 /static/articles
parentf67606c6ddcc3a217542ef1f1e2f6e4384e5cb75 (diff)
clarify wording
Diffstat (limited to 'static/articles')
-rw-r--r--static/articles/server-traffic-shaping.html7
1 files changed, 4 insertions, 3 deletions
diff --git a/static/articles/server-traffic-shaping.html b/static/articles/server-traffic-shaping.html
index cf442d17..61c6c296 100644
--- a/static/articles/server-traffic-shaping.html
+++ b/static/articles/server-traffic-shaping.html
@@ -217,9 +217,10 @@
the <code>TCP_NOTSENT_LOWAT</code> socket option to override it per-socket.</p>
<p>A reasonable choice for internet-based workloads concerned about latency and
- particularly prioritization within TCP connections is 128kiB. To configure this,
- set the following in <code>/etc/sysctl.d/local.conf</code> or another sysctl
- configuration file and load it with <code>sysctl --system</code>:</p>
+ particularly prioritization within TCP connections but unwilling to sacrifice
+ throughput is 128kiB. To configure this, set the following in
+ <code>/etc/sysctl.d/local.conf</code> or another sysctl configuration file and
+ load it with <code>sysctl --system</code>:</p>
<pre>net.ipv4.tcp_notsent_lowat = 131072</pre>