aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/glossary/tcp_slow_start
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/glossary/tcp_slow_start
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/zh-cn/glossary/tcp_slow_start')
-rw-r--r--files/zh-cn/glossary/tcp_slow_start/index.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/files/zh-cn/glossary/tcp_slow_start/index.html b/files/zh-cn/glossary/tcp_slow_start/index.html
new file mode 100644
index 0000000000..d6aa522d99
--- /dev/null
+++ b/files/zh-cn/glossary/tcp_slow_start/index.html
@@ -0,0 +1,19 @@
+---
+title: TCP slow start
+slug: Glossary/TCP_slow_start
+translation_of: Glossary/TCP_slow_start
+---
+<p>{{glossary('TCP')}} slow start helps buildup transmission speeds to the network's capabilities. It does this without initially knowing what those capabilities are and without creating congestion. {{glossary('TCP')}} slow start is an algorithm used to detect the available bandwidth for packet transmission, and balances the speed of a network connection. It prevents the appearance of network congestion whose capabilities are initially unknown, and slowly increases the volume of information diffused until the network's maximum capacity is found.</p>
+
+<p>To implement TCP slow start, the congestion window (<em>cwnd</em>) sets an upper limit on the amount of data a source can transmit over the network before receiving an acknowledgment (ACK). The slow start threshold (<em>ssthresh</em>) determines the (de)activation of slow start. When a new connection is made, cwnd is initialized to one TCP data or acknowledgment packet, and waits for an acknowledgement, or ACK. When that ACK is received, the congestion window is incremented until the <em>cwnd</em> is less than <em>ssthresh</em>. Slow start also terminates when congestion is experienced.</p>
+
+<h2 id="拥塞控制">拥塞控制</h2>
+
+<p>拥塞本身是发生在网络层的一种状态,当消息流量太忙,它减慢了网络响应时间。 服务器以TCP包发送数据,用户的客户端然后通过返回acknoledgements或ack来确认传输。根据硬件和网络条件,连接的容量是有限的。<span style="font-weight: 400;"> </span>如果服务器发送太多的数据包太快,它们将被丢弃。 意味着,不会有任何确认。<span style="font-weight: 400;"> </span>服务器将其注册为丢失ACKs。拥塞控制算法使用发送的数据包和ack流来确定发送速率。</p>
+
+<h2 id="参阅">参阅</h2>
+
+<ul>
+ <li><a href="/en-US/docs/Web/Performance/Populating_the_page:_how_browsers_work">Populating the page: how browsers work</a></li>
+ <li><a href="/en-US/docs/Web/HTTP/Overview">http overview</a></li>
+</ul>