aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Fenny <08jadez@gmail.com> 2020-01-31 15:38:50 -0500
committerGravatar GitHub <noreply@github.com> 2020-01-31 21:38:50 +0100
commit38e068a51cc48ab19ce79c994c66d9fe0741fafe (patch)
treed96b168aacf14f640ba77ed713f4d0342162c57b /README.md
parentSupport calling Serve multiple times on a Server (#731) (diff)
downloadfasthttp-38e068a51cc48ab19ce79c994c66d9fe0741fafe.tar.gz
fasthttp-38e068a51cc48ab19ce79c994c66d9fe0741fafe.tar.bz2
fasthttp-38e068a51cc48ab19ce79c994c66d9fe0741fafe.zip
Fix XHR Typo (#735)
* Add third-party router / framework to README.md * Fix XHR header * Don't add fiber to the readme yet It needs more users and activity first. We don't just want to add any framework otherwise our readme will get super full. Co-authored-by: Erik Dubbelboer <erik@dubbelboer.com>
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 3a750c1..95270a3 100644
--- a/README.md
+++ b/README.md
@@ -169,7 +169,7 @@ go get -u github.com/valyala/fasthttp
Unfortunately, fasthttp doesn't provide API identical to net/http.
See the [FAQ](#faq) for details.
There is [net/http -> fasthttp handler converter](https://godoc.org/github.com/valyala/fasthttp/fasthttpadaptor),
-but it is better to write fasthttp request handlers by hand in order to use
+but it is better to write fasthttp request handlers by hand in order to use
all of the fasthttp advantages (especially high performance :) ).
Important points:
@@ -523,7 +523,7 @@ uintBuf := fasthttp.AppendUint(nil, 1234)
* *Why fasthttp doesn't support HTTP/2.0 and WebSockets?*
- [HTTP/2.0 support](https://github.com/fasthttp/http2) is in progress. [WebSockets](https://github.com/fasthttp/websockets) has been done already.
+ [HTTP/2.0 support](https://github.com/fasthttp/http2) is in progress. [WebSockets](https://github.com/fasthttp/websockets) has been done already.
Third parties also may use [RequestCtx.Hijack](https://godoc.org/github.com/valyala/fasthttp#RequestCtx.Hijack)
for implementing these goodies.
@@ -548,7 +548,7 @@ uintBuf := fasthttp.AppendUint(nil, 1234)
Go1.5+. Older versions won't be supported, since their standard package
[miss useful functions](https://github.com/valyala/fasthttp/issues/5).
-
+
**NOTE**: Go 1.9.7 is the oldest tested version. We recommend you to update as soon as you can. As of 1.11.3 we will drop 1.9.x support.
* *Please provide real benchmark data and server information*