aboutsummaryrefslogtreecommitdiff
path: root/doc.go
diff options
context:
space:
mode:
authorGravatar Aliaksandr Valialkin <valyala@gmail.com> 2015-11-22 13:41:30 +0200
committerGravatar Aliaksandr Valialkin <valyala@gmail.com> 2015-11-22 13:41:30 +0200
commit016fda260f98e9aa9e0ed63d086ed35cc0d9d22e (patch)
treebf8ed34f8ee91725ea26be1005f4fd91ddd2465b /doc.go
parentAccess Cookie members via accessors (diff)
downloadfasthttp-016fda260f98e9aa9e0ed63d086ed35cc0d9d22e.tar.gz
fasthttp-016fda260f98e9aa9e0ed63d086ed35cc0d9d22e.tar.bz2
fasthttp-016fda260f98e9aa9e0ed63d086ed35cc0d9d22e.zip
Updated docs
Diffstat (limited to 'doc.go')
-rw-r--r--doc.go15
1 files changed, 8 insertions, 7 deletions
diff --git a/doc.go b/doc.go
index 65739d5..acce1fc 100644
--- a/doc.go
+++ b/doc.go
@@ -3,14 +3,13 @@ Package fasthttp provides fast HTTP server and client API.
Fasthttp provides the following features:
- * Optimized for speed. Fasthttp is faster than standard net/http package.
+ * 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.
- * Easily handles more than 1M concurrent keep-alive connections on modern
- hardware.
* 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.
- * Server is packed with the following anti-DoS limits:
+ * Server provides the following anti-DoS limits:
* The number of concurrent connections.
* The number of concurrent connections per client IP.
@@ -18,8 +17,9 @@ Fasthttp provides the following features:
* Request read timeout.
* Response write timeout.
* Maximum request header size.
+ * Maximum request execution time.
- * A lot of useful info is exposed to request handler:
+ * A lot of additional useful info is exposed to request handler:
* Server and client address.
* Per-request logger.
@@ -29,7 +29,8 @@ Fasthttp provides the following features:
* Request sequence number for the current connection.
* Client supports automatic retry on idempotent requests' failure.
- * It is quite easy building custom (and fast) client and server
- implementations using fasthttp API.
+ * Fasthttp API is designed with the ability to extend existing client
+ and server implementations or to write custom client and server
+ implementations from scratch.
*/
package fasthttp