Ich war an Web-Apps und Rust interessiert und habe die Leistung des Web-Frameworks verglichen, um festzustellen, wie schnell es funktioniert.
Umgebung
windows 10 pro
Intel(R) Core(TM) i5-7300U CPU @ 2.60GHz 2.71GHz
RAM: 8.00 GB
system 64bit
Zu verwendendes Webframework Rust: Actix-web Python: Flask Julia: Genie
Hallo Welt App Erstellung Zunächst Actix
Befehl
cargo new hello-world
cd hello-world
Bearbeiten Sie main.rs in \ hello-world \ src.
main.rs
use actix_web::{get, post, web, App, HttpResponse, HttpServer, Responder};
#[get("/")]
async fn hello() -> impl Responder {
HttpResponse::Ok().body("Hello world!")
}
#[post("/echo")]
async fn echo(req_body: String) -> impl Responder {
HttpResponse::Ok().body(req_body)
}
async fn manual_hello() -> impl Responder {
HttpResponse::Ok().body("Hey there!")
}
#[actix_web::main]
async fn main() -> std::io::Result<()> {
HttpServer::new(|| {
App::new()
.service(hello)
.service(echo)
.route("/hey", web::get().to(manual_hello))
})
.bind("0.0.0.0:8080")?
.run()
.await
}
Flask
Erstellen Sie server.py in einem geeigneten Ordner.
server.py
from flask import Flask
app = Flask(__name__)
@app.route('/')
def index():
return 'Hello World'
if __name__ == '__main__':
app.debug = True
app.run(host='0.0.0.0', port=8001)
Genie in Julia erstellt
Befehl
julia
using Genie
Genie.newapp("hello_world")
Da der Dateisatz automatisch erstellt wird, beenden Sie julia und bearbeiten Sie die Datei route.jl.
routes.jl
using Genie.Router
route("/") do
"Hello - Welcome to Genie!"
end
Genie.AppServer.startup(8000, "0.0.0.0")
Jetzt, wo ich darüber nachdenke, hätte ich vielleicht in Julia Folgendes getan, ohne eine Dateigruppe zu erstellen. .. .. ..
"Hello - Welcome to Genie!"
end
Genie.AppServer.startup(8000, "0.0.0.0")```
Lassen Sie die drei Web-Apps laufen und verwenden Sie einen anderen PC (ubuntu20.04), um die Leistung zu messen.
# Leistungsmessung
Verwenden Sie wrk2.
https://github.com/giltene/wrk2
#### **`Befehl`**
```ubuntu
sudo apt-get install -y build-essential libssl-dev git zlib1g-dev
git clone https://github.com/giltene/wrk2.git
cd wrk2
make
sudo cp wrk /usr/local/bin
wrk -v
wrk 4.0.0 [epoll] Copyright (C) 2012 Will Glozer
Usage: wrk <options> <url>
Options:
-c, --connections <N> Connections to keep open
-d, --duration <T> Duration of test
-t, --threads <N> Number of threads to use
-s, --script <S> Load Lua script file
-H, --header <H> Add header to request
-L --latency Print latency statistics
-U --u_latency Print uncorrected latency statistics
--timeout <T> Socket/request timeout
-B, --batch_latency Measure latency of whole
batches of pipelined ops
(as opposed to each op)
-v, --version Print version details
-R, --rate <T> work rate (throughput)
in requests/sec (total)
[Required Parameter]
Numeric arguments may include a SI unit (1k, 1M, 1G)
Time arguments may include a time unit (2s, 2m, 2h)
Verwenden Sie wrk2img, um das Diagramm anzuzeigen. https://github.com/PPACI/wrk2img
Befehl
pip3 install wrk2img
#Es hat nicht funktioniert, also habe ich Sudo angezogen
Ich werde es messen. Informationen zur Verwendung und Anzeige finden Sie weiter unten. https://qiita.com/RyujiKawazoe/items/1da4342d8854543ca4cc
Befehl
wrk -U -d 30 -c 100 -R 1000 --latency http://192.168.1.95:8080/ | wrk2img actix_100.png
wrk -U -d 30 -c 100 -R 1000 --latency http://192.168.1.95:8001/ | wrk2img flask_100.png
wrk -U -d 30 -c 100 -R 1000 --latency http://192.168.1.95:8000/ | wrk2img genie_100.png
Flask <Genie <actix, also scheint actix gut zu funktionieren.
Diagramm, wenn die Anzahl der Actix-Verbindungen am Ende erhöht wird (10.100.1000.10000)
Es gibt keine Last bis zu 100, aber es scheint betroffen zu sein, wenn es 1000 erreicht.
das ist alles