SPDY is Google’s protocol that is intended to improve user experience on the web, by reducing the latency of web pages, sometimes up to a factor of 3. Yes, three times faster.
How does SPDY accomplish that ?
SPDY reduces roundtrips with the server, reduces the HTTP verboseness by compressing HTTP headers, improves the utilization of the TCP connection, multiplexes requests into a single TCP connection (instead of using a limited number of connections, each serving only one request), and allows for server to push secondary resources (like CSS, images, scripts, etc.) associated with a primary resource (typically a web page) without incurring in additional round-trips.
Now, the really cool thing is that Jetty has an implementation of SPDY (see the documentation) in the newly released 7.6.2 and 8.1.2 releases.
Your web applications can immediately and transparently benefit of many of the SPDY improvements without changes, because Jetty does the heavy lifting for you under the covers.
With Chromium/Chrome already supporting SPDY, and Firefox 11 supporting it also (although it needs to be enabled, see how here), more than 50% of the web browsers will be supporting it, so servers needs to catch up, and where Jetty shines.
The Jetty project continues to foster innovation by supporting emerging web protocols: first WebSocket and now SPDY.
A corollary project that came out from the SPDY implementation is a pure Java implementation of the Next Protocol Negotiation (NPN) TLS Extension, also available in Jetty 7.6.2 and 8.1.2.
To prove that this is no fluke, we have updated Webtide’s website with Jetty’s SPDY implementation, and now the website can be served via SPDY, if the browser supports it.
We encourage early adopters to test out Jetty’s SPDY and feedback us on jetty-dev@eclipse.org.
Enjoy !


12 Comments

Stefan Arentz · 16/03/2012 at 13:12

I downloaded both 8.1.2 and 7.6.2 but there is no sign of the spdy code. Is there an additional package that I need to download?

    simon · 16/03/2012 at 13:50

    In the 7.6.2 and 8.1.2 releases, we forgot to make SPDY available in the distribution; we will fix this in 7.6.3 and 8.1.3.
    Meanwhile, you can download the SPDY jars from http://repo2.maven.org/maven2/org/eclipse/jetty/spdy/.
    Sorry about that, SPDY was there but slipped out of the distribution packaging.

Stefan Arentz · 18/03/2012 at 13:39

I actually am interested in the source code, so I followed the Sources link to the page that explains how to grab the code from the Eclipse git server. Unfortunately the checkout fails with:
$ git clone http://git.eclipse.org/c/jetty/org.eclipse.jetty.project.git
Cloning into org.eclipse.jetty.project…
error: The requested URL returned error: 403 (curl_result = 22, http_code = 403, sha1 = 1b72c3a0a79654ac272aea6eb2f3f9aa1d20c7e6)
error: Unable to get pack index http://git.eclipse.org/c/jetty/org.eclipse.jetty.project.git/objects/pack/pack-4f01a64aa08c03b8317ede41ac67aa3fff82e6cf.idx

Mario · 19/03/2012 at 05:31

I was wondering is the java requirement for OpenJDK 1.7 only or it will work with Oracle’s JDK 7 also?

    Prince · 08/04/2012 at 01:55

    Ian,if you can’t get a consensus that it is a seicruty bug, then the IETF will pick something that you might IYNSHO think is a seicruty bug.Conversely, I’ve argued that sentinel framing is a seicruty vulnerability in websockets because it is susceptible to injection attacks (as is HTTP but no reason to repeat mistakes), yet the WHATWG process goes with your opinion and ships anyway. Can you give me the emails of the WHATWG members so I can appeal your decision?

Misaki · 08/04/2012 at 03:19

IANA had good reasons to useggst the usage of port 80/443, and I’ve actually got few objections to that happening. The upgrade mechanism is there in HTTP for a reason.But the initial upgrade request should be a real HTTP request (not something that just looks like a HTTP request), and the entire internet community need to be involved in the process of developing the upgraded protocol not just the browser vendors.

Fast, Easy Web Design! » Blog Archive » InfoQ Ratpack Classy and Compact Groovy Web Apps · 15/03/2012 at 16:37

[…] SPDY support in Jetty | Webtide BlogsBy simonYour web applications can immediately and transparently benefit of many of the SPDY improvements without changes, because Jetty does the heavy lifting for you under the covers. With Chromium/Chrome already supporting SPDY, and …Webtide Blogs […]

Jetty-SPDY is joining the revolution! | Webtide Blogs · 19/03/2012 at 03:47

[…] Webtide Blogs Blogs from the developers of Jetty & Cometd Skip to content Home ← SPDY support in Jetty […]

500,000 Requests/Sec? Piffle! 1,000,000 Is Better « The Low Latency Web · 26/03/2012 at 13:57

[…] while, Firefox and nginx will soon, and there is an experimental Apache module. For dynamic content Jetty and Netty support SPDY today, and Netty’s implementation is already in production use by […]

Jetty-SPDY blogged | Webtide Blogs · 03/04/2012 at 10:17

[…] Dirksen has written a nice blog about Jetty-SPDY, thanks Jos […]

Comments are closed.