Questions tagged [spdy]

SPDY is an experimental protocol for multiplexing multiple, concurrent streams (typically HTTP request/response streams) over a single TCP connection.

SPDY is an experimental protocol for multiplexing multiple, concurrent streams (typically HTTP request/response streams) over a single TCP connection. SPDY is part of the HTTP 2.0 initiative led by the HTTPbis working group.

214 questions
53
votes
1 answer

Difference between HTTP pipeling and HTTP multiplexing with SPDY

Thanks to Google and Stack Overflow, I think I understood the difference between regular HTTP pipelining and HTTP multiplexing (e.g., with SPDY), so I made the diagram below to show the differences between pipelining and multiplexing based on three…
qualle
  • 1,337
  • 3
  • 14
  • 29
43
votes
1 answer

SPDY module for IIS7

My goal is to implement SPDY protocol (a new experimental protocol by GOOGLE) on IIS servers. SPDY is a TCP based application level protocol and as such I am guessing that I have to work at TCP level (socket programing) as the built in extensions…
user776131
  • 439
  • 1
  • 4
  • 3
38
votes
14 answers

What does ERR_SPDY_PROTOCOL_ERROR mean in nginx?

I and a few of my colleagues got the net::ERR_SPDY_PROTOCOL_ERROR error. We use ngnix version 1.8.0. The error is not stable (hard to replicate), and the Ngnix error log doesn't have this error. How would you advise we catch and resolve this?
TheMrbikus
  • 673
  • 2
  • 8
  • 14
33
votes
14 answers

Is there a way to detect if a website is using SPDY?

Is there a way to detect if a website is communicating with Chrome using SPDY?
Alex Kapranoff
  • 832
  • 2
  • 8
  • 9
25
votes
3 answers

SPDY as replacement for Websockets?

First off - I understand SPDY and Websockets aren't the same thing, and that you can run Websockets over SPDY like you can with HTTP, etc. However - I am wondering if SPDY would be a viable replacement for websockets if I am trying to provide a …
7zark7
  • 9,633
  • 5
  • 35
  • 53
23
votes
2 answers

Automatize HAR files generation from Google Chrome

Basically what I need is a way to automatize the result of the following operations: open a new tab; open the Network tab in the developer tools; load an URL; select "Save All as HAR". Often, proposed solutions involves the use of PhantomJS,…
cYrus
  • 2,713
  • 5
  • 24
  • 44
17
votes
3 answers

Is SPDY any different than http multiplexing over keep alive connections

HTTP 1.1 supports keep alive connections, connections are not closed until "Connection: close" is sent. So, if the browser, in this case firefox has network.http.pipelining enabled and network.http.pipelining.maxrequests increased isn't the same…
codeassembly
  • 1,082
  • 1
  • 9
  • 17
15
votes
4 answers

What would a SPDY "Hello world" look like?

I just finished skimming the SPDY white paper and now I'm interested in trying it out. I understand that Google is serving content over SSL to Chrome using SPDY. What's the easiest way to set up and serve a basic "Hello world" HTML page over SPDY?
Marcel
  • 27,280
  • 9
  • 67
  • 84
15
votes
3 answers

Does SPDY protocol eliminate the need for CSS sprites, combined JS and CSS files?

I have been always combining CSS and JS files. The same has pretty much applied to images, too. I am wondering here that does Google's SPDY, with its multiplexing connections, remove the need for all of this? Compilation/minifying is not what I am…
Tower
  • 87,855
  • 117
  • 329
  • 496
14
votes
2 answers

Does websockets work with SPDY?

I'm using socket.io, if I use a SPDY server for my app would socket.io / websockets still work? Thanks.
Harry
  • 47,045
  • 66
  • 163
  • 243
14
votes
2 answers

Does Windows Azure support the SPDY protocol?

does anyone know if Windows Azure does (or plan to) support the SPDY protocol? I didn't find anything so I guess it is not supported yet...
mvieghofer
  • 2,616
  • 4
  • 19
  • 49
14
votes
4 answers

How to disable SPDY in Google Chrome

I'd like to know how to disable automatically using SPDY protocol in Google Chrome. I need to make some IDS related tests and for that purpose I'd like to temporarily access Twitter or Google using HTTP SSL and not SPDY. Is there even an option to…
blackd0t
  • 439
  • 1
  • 5
  • 12
13
votes
2 answers

Google SPDY - Has anyone used it on Apache?

Just wondering if anyone has had any experience with Google SPDY on Apache? http://code.google.com/p/mod-spdy/ I run a couple of web servers and am interested to know if there have been any issues with the mod_spdy Apache module and if anyone has…
Luke McCallum
  • 231
  • 1
  • 5
13
votes
2 answers

Has anyone managed to get SPDY to work behind an Amazon ELB?

We've been using nginx compiled with the spdy module for some time now and despite only being draft 2 of the specs are quite pleased with its performance. However we now have the need to horizontally scale and have put our EC2 instances behind an…
Gordo
  • 739
  • 8
  • 19
13
votes
1 answer

How to set up SPDY Protocol over Nginx?

I have a rails app and want to set up the google SPDY protocol support. But after installing Nginx with SPDY patch and then enabling the spdy in virtual host it does not allow me to restart the nginx instead throws following error. Restarting nginx:…
ʞɹᴉʞ ǝʌɐp
  • 4,164
  • 5
  • 34
  • 59
1
2 3
14 15