1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-24 07:53:00 +01:00
actix-extras/README.md

83 lines
3.7 KiB
Markdown
Raw Normal View History

2017-10-24 00:58:05 +02:00
# Actix web [![Build Status](https://travis-ci.org/actix/actix-web.svg?branch=master)](https://travis-ci.org/actix/actix-web) [![Build status](https://ci.appveyor.com/api/projects/status/kkdb4yce7qhm5w85/branch/master?svg=true)](https://ci.appveyor.com/project/fafhrd91/actix-web-hdy9d/branch/master) [![codecov](https://codecov.io/gh/actix/actix-web/branch/master/graph/badge.svg)](https://codecov.io/gh/actix/actix-web) [![crates.io](http://meritbadge.herokuapp.com/actix-web)](https://crates.io/crates/actix-web)
2017-09-30 18:16:59 +02:00
2017-12-05 21:25:57 +01:00
Actix web is a small, fast, down-to-earth, open source rust web framework.
```rust,ignore
use actix_web::*;
2017-12-08 21:51:44 +01:00
fn index(req: HttpRequest) -> String {
format!("Hello {}!", &req.match_info()["name"])
2017-12-05 21:25:57 +01:00
}
fn main() {
2017-12-08 21:51:44 +01:00
HttpServer::new(
2017-12-14 06:44:16 +01:00
|| Application::new()
2017-12-12 04:17:37 +01:00
.resource("/{name}", |r| r.f(index)))
2017-12-05 21:25:57 +01:00
.serve::<_, ()>("127.0.0.1:8080");
}
```
## Documentation
2017-09-30 18:16:59 +02:00
2017-11-28 04:56:14 +01:00
* [User Guide](http://actix.github.io/actix-web/guide/)
2017-10-24 00:58:05 +02:00
* [API Documentation (Development)](http://actix.github.io/actix-web/actix_web/)
* [API Documentation (Releases)](https://docs.rs/actix-web/)
2017-10-31 00:37:26 +01:00
* Cargo package: [actix-web](https://crates.io/crates/actix-web)
2017-10-07 08:14:13 +02:00
* Minimum supported Rust version: 1.20 or later
2017-09-30 18:16:59 +02:00
2017-10-07 10:12:43 +02:00
## Features
2017-12-14 08:35:21 +01:00
* Supported *HTTP/1.x* and *HTTP/2.0* protocols
* Streaming and pipelining
* Keep-alive and slow requests handling
* [WebSockets](https://actix.github.io/actix-web/actix_web/ws/index.html)
2017-11-09 04:42:13 +01:00
* Transparent content compression/decompression (br, gzip, deflate)
2017-10-23 18:17:24 +02:00
* Configurable request routing
2017-10-21 11:08:07 +02:00
* Multipart streams
2017-12-14 06:44:16 +01:00
* Middlewares (Logger, Session, DefaultHeaders)
2017-12-05 21:25:57 +01:00
* Built on top of [Actix](https://github.com/actix/actix).
2017-11-04 20:36:37 +01:00
2017-12-15 05:12:28 +01:00
## Benchmarks
This is totally unscientific and probably pretty useless. In real world business
logic would dominate on performance side. But in any case. i took several web frameworks
for rust and used theirs *hello world* example. All projects are compiled with
`--release` parameter. I didnt test single thread performance for iron and rocket.
As a testing tool i used `wrk` and following commands
`wrk -t20 -c100 -d10s http://127.0.0.1:8080/`
`wrk -t20 -c100 -d10s http://127.0.0.1:8080/ -s ./pipeline.lua --latency -- / 128`
I ran all tests on localhost on MacBook Pro late 2017. It has 4 cpu and 8 logical cpus.
Each result is best of five runs. All measurements are req/sec.
2017-12-15 05:29:49 +01:00
Name | 1 thread | 1 pipeline | 3 thread | 3 pipeline | 8 thread | 8 pipeline
---- | -------- | ---------- | -------- | ---------- | -------- | ----------
2017-12-16 01:24:15 +01:00
Actix | 89.300 | 871.200 | 122.100 | 1.877.000 | 107.400 | 2.560.000
2017-12-15 05:49:09 +01:00
Gotham | 61.000 | 178.000 | | | |
2017-12-15 05:48:31 +01:00
Iron | | | | | 94.500 | 78.000
Rocket | | | | | 95.500 | failed
Shio | 71.800 | 317.800 | | | | |
tokio-minihttp | 106.900 | 1.047.000 | | | |
2017-12-15 05:12:28 +01:00
Some notes on results. Iron and Rocket got tested with 8 threads,
which showed best results. Gothan and tokio-minihttp seem does not support
multithreading, or at least i couldn't figured out. I manually enabled pipelining
for *Shio* and Gotham*. While shio seems support multithreading, but it showed
2017-12-15 22:10:12 +01:00
absolutly same results for any how number of threads (maybe macos problem?)
2017-12-15 05:12:28 +01:00
Rocket completely failed in pipelined tests.
2017-12-05 21:25:57 +01:00
## Examples
2017-10-07 09:53:36 +02:00
2017-10-23 18:20:12 +02:00
* [Basic](https://github.com/actix/actix-web/tree/master/examples/basic.rs)
2017-10-23 20:48:06 +02:00
* [Stateful](https://github.com/actix/actix-web/tree/master/examples/state.rs)
2017-10-23 18:20:12 +02:00
* [Mulitpart streams](https://github.com/actix/actix-web/tree/master/examples/multipart)
* [Simple websocket session](https://github.com/actix/actix-web/tree/master/examples/websocket.rs)
2017-10-23 18:16:13 +02:00
* [Tcp/Websocket chat](https://github.com/actix/actix-web/tree/master/examples/websocket-chat)
2017-11-04 17:07:44 +01:00
* [SockJS Server](https://github.com/actix/actix-sockjs)
2017-10-21 11:08:07 +02:00
2017-12-05 21:25:57 +01:00
## License
2017-10-21 11:08:07 +02:00
2017-12-05 21:25:57 +01:00
Actix web is licensed under the [Apache-2.0 license](http://opensource.org/licenses/APACHE-2.0).