aboutsummaryrefslogtreecommitdiffstats
path: root/guide
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2013-09-10 12:08:18 +0200
committerLoïc Hoguin <[email protected]>2013-09-10 12:08:18 +0200
commit40b87545f68d52d7b4e2dd495639deef184cceca (patch)
tree3af09a15edd12e4f918bd6f0b1f82a9788201a5e /guide
parent1a4e7a86185021f1f1eb50b3fde5043570da3f94 (diff)
downloadcowboy-40b87545f68d52d7b4e2dd495639deef184cceca.tar.gz
cowboy-40b87545f68d52d7b4e2dd495639deef184cceca.tar.bz2
cowboy-40b87545f68d52d7b4e2dd495639deef184cceca.zip
Fix SPDY push explanations
Diffstat (limited to 'guide')
-rw-r--r--guide/modern_web.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/guide/modern_web.md b/guide/modern_web.md
index 65e1c1c..53670a4 100644
--- a/guide/modern_web.md
+++ b/guide/modern_web.md
@@ -199,8 +199,10 @@ the size of requests.
SPDY is compatible with HTTP/1.1 semantics, and is actually
just a different way of performing HTTP requests and responses,
by using binary frames instead of a text-based protocol.
-SPDY also allows the server to send responses without needing
-a request to exist, essentially enabling server push.
+SPDY also allows the server to send extra responses following
+a request. This is meant to allow sending the resources
+associated with the request before the client requests them,
+saving latency when loading websites.
SPDY is an experiment that has proven successful and is used
as the basis for the HTTP/2.0 standard.