aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Aliaksandr Valialkin <valyala@gmail.com> 2016-12-05 18:36:47 +0200
committerGravatar Aliaksandr Valialkin <valyala@gmail.com> 2016-12-05 18:36:47 +0200
commit1dc5bc133b3436ba3e2a3a0690e94e26b9d823b2 (patch)
tree3fcdf0536e56d4eb330b3aa7243957893cc8e4b0 /README.md
parentIssue #207: Mention lu framework in README.md (diff)
downloadfasthttp-1dc5bc133b3436ba3e2a3a0690e94e26b9d823b2.tar.gz
fasthttp-1dc5bc133b3436ba3e2a3a0690e94e26b9d823b2.tar.bz2
fasthttp-1dc5bc133b3436ba3e2a3a0690e94e26b9d823b2.zip
Issue #207: mention lu in more places. Remove echo, since it dropped fasthttp support starting from v3
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 2 insertions, 4 deletions
diff --git a/README.md b/README.md
index ce0e6e6..7688005 100644
--- a/README.md
+++ b/README.md
@@ -278,7 +278,7 @@ with fasthttp support:
* [Iris](https://github.com/kataras/iris)
* [fasthttp-routing](https://github.com/qiangxue/fasthttp-routing)
* [fasthttprouter](https://github.com/buaazp/fasthttprouter)
- * [echo v2](https://github.com/labstack/echo)
+ * [lu](https://github.com/vincentLiuxiang/lu)
Net/http code with simple ServeMux is trivially converted to fasthttp code:
@@ -488,8 +488,6 @@ uintBuf := fasthttp.AppendUint(nil, 1234)
performance fasthttp request router that scales well.
* [lu](https://github.com/vincentLiuxiang/lu) - a high performance
go middleware web framework which is based on fasthttp.
- * [echo](https://github.com/labstack/echo) - fast and unfancy HTTP server
- framework with fasthttp support.
* [websocket](https://github.com/leavengood/websocket) - Gorilla-based
websocket implementation for fasthttp.
@@ -560,7 +558,7 @@ uintBuf := fasthttp.AppendUint(nil, 1234)
* [Iris](https://github.com/kataras/iris)
* [fasthttp-routing](https://github.com/qiangxue/fasthttp-routing)
* [fasthttprouter](https://github.com/buaazp/fasthttprouter)
- * [echo v2](https://github.com/labstack/echo)
+ * [lu](https://github.com/vincentLiuxiang/lu)
See also [this issue](https://github.com/valyala/fasthttp/issues/9) for more info.