unit-rs 0.2.0

A safe wrapper around NGINX Unit's libunit.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all: debug

debug:
	cargo build --example request_info
	sudo ./deploy.sh
	curl -v localhost:8080

release:
	cargo build --release --example request_info
	sudo ./deploy.sh release
	curl -v localhost:8080

bench:
	wrk -c 32 -d 3 -t 8 http://localhost:8080