TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Announcing SPDY draft 2 implementation in nginx

145 点作者 lysol将近 13 年前

6 条评论

seldo将近 13 年前
This is a big deal, I think. Ten years from now we're going to look back and discover that Google quietly replaced HTTP without anybody complaining, or even noticing.
评论 #4117618 未加载
评论 #4118404 未加载
评论 #4117817 未加载
mtgx将近 13 年前
The other article on SPDY complained about it having SSL enabled by default. Is that really something to complain about? Isn't it one of the good things about it, because if SPDY gets adopted, it means everything becomes encrypted? And isn't that a very desirable future?
评论 #4117835 未加载
chmod775将近 13 年前
Wait. Did I just read that right? They want to emulate a packet (or frame) based protocol on top of a stream protocol (TCP-Stream) which itself uses packets? That adds umm... how many overhead? Lets count:<p>- Data Link Layer (for instance Ethernet-Frames/Packets)<p>- IPv4/IPv6 - Packets<p>- TCP-Packets --&#62; TCP-Stream<p>- SPDY-Frames --&#62; Multiple Streams<p>- (<i>Edit</i> OK. Maybe not HTTP. Just insert here how they want to transmit the headers)<p>That way we not only send more useless data. We also have to dis- and reassemble everything twice.<p>Why not just extend the TCP-Protocol to support multiple streams? There's still unused space in the header and we have the possibility add additional options.<p><a href="http://en.wikipedia.org/wiki/Transmission_Control_Protocol#TCP_segment_structure" rel="nofollow">http://en.wikipedia.org/wiki/Transmission_Control_Protocol#T...</a><p>Am I missing something? I know that applications are not allowed to send raw TCP-Packets on most OSes by default. But most servers run Linux, which could be easily patched to support such additional features. (And webhosts will have some work to support that new protocol anyways)<p>I don't get it.<p>Edit: SCTP may be a suitable replacement for TCP as mentioned in some other comment. <a href="http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol" rel="nofollow">http://en.wikipedia.org/wiki/Stream_Control_Transmission_Pro...</a>
评论 #4119614 未加载
NiekvdMaas将近 13 年前
For everyone who tries to build this: the URL to the patch file is <a href="http://nginx.org/patches/spdy/patch.spdy-35.txt" rel="nofollow">http://nginx.org/patches/spdy/patch.spdy-35.txt</a>, and not the one mentioned in the announcement.
评论 #4117826 未加载
Ralith将近 13 年前
I hope SCTP[1] starts to take off soon as a transport for protocols like this, so they don't have to keep working around the limitations of TCP.<p>[1] <a href="http://en.wikipedia.org/wiki/SCTP" rel="nofollow">http://en.wikipedia.org/wiki/SCTP</a>
评论 #4119966 未加载
subleq将近 13 年前
It was much easier to get this working than I thought it would be! Does anyone know when this will be part of an official release?