aboutsummaryrefslogtreecommitdiff
path: root/doc.go
diff options
context:
space:
mode:
authorGravatar Aliaksandr Valialkin <valyala@gmail.com> 2015-11-24 15:48:10 +0200
committerGravatar Aliaksandr Valialkin <valyala@gmail.com> 2015-11-24 15:48:10 +0200
commit52c04f13b2bbb0a9c361825ee9b1c7306f5f0910 (patch)
tree76cbf61a7d815d0761698c27e7f8e5e846abb608 /doc.go
parentFixed data race when hijacked conn is backed by firstByteReader, which is att... (diff)
downloadfasthttp-52c04f13b2bbb0a9c361825ee9b1c7306f5f0910.tar.gz
fasthttp-52c04f13b2bbb0a9c361825ee9b1c7306f5f0910.tar.bz2
fasthttp-52c04f13b2bbb0a9c361825ee9b1c7306f5f0910.zip
Added support for 'Connection: Upgrade', so RequestHandler may detect such connections and hijack them
Diffstat (limited to 'doc.go')
-rw-r--r--doc.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc.go b/doc.go
index 050e1ba..6c7a764 100644
--- a/doc.go
+++ b/doc.go
@@ -6,6 +6,7 @@ Fasthttp provides the following features:
* Optimized for speed. Easily handles more than 100K qps and more than 1M
concurrent keep-alive connections on modern hardware.
* Optimized for low memory usage.
+ * Easy 'Connection: Upgrade' support via RequestCtx.Hijack.
* Server supports requests' pipelining. Multiple requests may be read from
a single network packet and multiple responses may be sent in a single
network packet. This may be useful for highly loaded REST services.