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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Twitter adds SPDY support to Netty

121 点作者 cgbystrom超过 13 年前

6 条评论

spullara超过 13 年前
This is a big deal for sites that want to rival Google sites performance-wise. Especially now that it will be in Firefox 11 in addition to Chrome. It would be great if any of the popular proxy servers - like Nginx - also had support for it.
评论 #3562865 未加载
bensummers超过 13 年前
I presume that it doesn't support SNI (for SSL vhosts) as the underlying JVM doesn't support it for servers? (I couldn't see anything in the docs, and it says it uses the JVM's SSL support underneath.)<p>One of the Google chaps said that SPDY required SNI when it was originally announced, so I was hopeful for a while.
评论 #3564063 未加载
tlrobinson超过 13 年前
Cool, support seems to be picking up. Here's a list of implementations: <a href="http://dev.chromium.org/spdy" rel="nofollow">http://dev.chromium.org/spdy</a><p>Nginx seems to be the big missing one. I think Mongrel2 would be a good fit too.
moonchrome超过 13 年前
Yey ! I just wrote a server on top of Netty and figured out how to use SPDY to boost my performance but couldn't find SPDY implementation for Netty. Thank you twitter !
ww520超过 13 年前
That's very cool. Netty is amazing already in term of performance. This just pushes it up another rung.
benmmurphy超过 13 年前
i have an example of SPDY+Netty+NPN here: <a href="https://github.com/benmmurphy/netty_spdy_example" rel="nofollow">https://github.com/benmmurphy/netty_spdy_example</a><p>it works with chrome which is quite nice to see.