Last change
on this file since 145 was 145, checked in by Izuru Yakumo, 22 months ago |
Updated the Makefile and vendored depedencies
Signed-off-by: Izuru Yakumo <yakumo.izuru@…>
|
File size:
1.4 KB
|
Rev | Line | |
---|
[145] | 1 | /*
|
---|
| 2 | Package fasthttp provides fast HTTP server and client API.
|
---|
| 3 |
|
---|
| 4 | Fasthttp provides the following features:
|
---|
| 5 |
|
---|
| 6 | * Optimized for speed. Easily handles more than 100K qps and more than 1M
|
---|
| 7 | concurrent keep-alive connections on modern hardware.
|
---|
| 8 | * Optimized for low memory usage.
|
---|
| 9 | * Easy 'Connection: Upgrade' support via RequestCtx.Hijack.
|
---|
| 10 | * Server provides the following anti-DoS limits:
|
---|
| 11 |
|
---|
| 12 | * The number of concurrent connections.
|
---|
| 13 | * The number of concurrent connections per client IP.
|
---|
| 14 | * The number of requests per connection.
|
---|
| 15 | * Request read timeout.
|
---|
| 16 | * Response write timeout.
|
---|
| 17 | * Maximum request header size.
|
---|
| 18 | * Maximum request body size.
|
---|
| 19 | * Maximum request execution time.
|
---|
| 20 | * Maximum keep-alive connection lifetime.
|
---|
| 21 | * Early filtering out non-GET requests.
|
---|
| 22 |
|
---|
| 23 | * A lot of additional useful info is exposed to request handler:
|
---|
| 24 |
|
---|
| 25 | * Server and client address.
|
---|
| 26 | * Per-request logger.
|
---|
| 27 | * Unique request id.
|
---|
| 28 | * Request start time.
|
---|
| 29 | * Connection start time.
|
---|
| 30 | * Request sequence number for the current connection.
|
---|
| 31 |
|
---|
| 32 | * Client supports automatic retry on idempotent requests' failure.
|
---|
| 33 | * Fasthttp API is designed with the ability to extend existing client
|
---|
| 34 | and server implementations or to write custom client and server
|
---|
| 35 | implementations from scratch.
|
---|
| 36 | */
|
---|
| 37 | package fasthttp
|
---|
Note:
See
TracBrowser
for help on using the repository browser.