139 lines
2.2 KiB
Markdown
Raw Normal View History

2024-03-22 14:08:24 +00:00
# web
2023-07-18 11:37:05 +00:00
2024-03-22 14:08:24 +00:00
Web server.
2023-07-18 19:48:38 +00:00
2024-03-07 17:09:51 +00:00
## Features
2024-03-15 09:06:17 +00:00
- High performance
2024-03-07 17:17:01 +00:00
- Low latency
- Radix tree routing
2024-03-07 17:09:51 +00:00
2023-07-18 19:48:38 +00:00
## Installation
```shell
2024-03-22 14:08:24 +00:00
go get git.akyoto.dev/go/web
2023-07-18 19:48:38 +00:00
```
2024-03-07 17:09:51 +00:00
## Usage
2023-07-18 19:48:38 +00:00
```go
2024-03-22 14:08:24 +00:00
s := web.NewServer()
2023-07-18 19:48:38 +00:00
2024-03-07 17:17:01 +00:00
// Static route
2024-03-22 14:08:24 +00:00
s.Get("/", func(ctx web.Context) error {
2023-07-18 19:48:38 +00:00
return ctx.String("Hello")
})
2024-03-07 17:17:01 +00:00
// Parameter route
2024-03-22 14:08:24 +00:00
s.Get("/blog/:post", func(ctx web.Context) error {
2023-07-22 09:54:13 +00:00
return ctx.String(ctx.Get("post"))
})
2024-03-07 17:17:01 +00:00
// Wildcard route
2024-03-22 14:08:24 +00:00
s.Get("/images/*file", func(ctx web.Context) error {
2023-07-22 09:54:13 +00:00
return ctx.String(ctx.Get("file"))
})
2024-03-07 17:17:01 +00:00
2024-03-12 21:31:45 +00:00
s.Run(":8080")
2024-03-07 17:09:51 +00:00
```
## Tests
```
2024-03-28 11:22:45 +00:00
PASS: TestBytes
PASS: TestString
PASS: TestError
PASS: TestErrorMultiple
PASS: TestRequest
PASS: TestRequestHeader
PASS: TestRequestParam
PASS: TestWrite
PASS: TestWriteString
PASS: TestResponseCompression
PASS: TestResponseHeader
PASS: TestResponseHeaderOverwrite
2024-03-07 17:09:51 +00:00
PASS: TestPanic
2024-03-12 21:32:51 +00:00
PASS: TestRun
2024-03-28 13:27:40 +00:00
PASS: TestBadRequest
PASS: TestBadRequestHeader
PASS: TestBadRequestMethod
PASS: TestBadRequestProtocol
PASS: TestEarlyClose
2024-03-12 21:32:51 +00:00
PASS: TestUnavailablePort
2024-03-28 13:27:40 +00:00
coverage: 100.0% of statements
2024-03-07 17:09:51 +00:00
```
## Benchmarks
2024-03-28 14:38:10 +00:00
### wrk
```shell
wrk -t12 -c1000 -d2s http://127.0.0.1:8080/
```
```
Running 2s test @ http://127.0.0.1:8080/
12 threads and 1000 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 1.83ms 2.07ms 33.95ms 88.04%
Req/Sec 50.38k 5.34k 64.92k 71.67%
1207398 requests in 2.03s, 46.06MB read
Requests/sec: 595860.16
Transfer/sec: 22.73MB
```
### ali
```shell
ali --rate=10000 --duration=0 http://127.0.0.1:8080/
```
```
Latencies:
P50: 90μs
P90: 138μs
P95: 160μs
```
### oha
```shell
oha -z 2s --no-tui http://127.0.0.1:8080/
```
```
Summary:
Success rate: 100.00%
Total: 2.0003 secs
Slowest: 0.0034 secs
Fastest: 0.0000 secs
Average: 0.0002 secs
Requests/sec: 265346.5118
```
### go-wrk
```shell
go-wrk -c 1000 -d 2 http://127.0.0.1:8080/
```
2024-03-07 17:09:51 +00:00
```
2024-03-28 14:38:10 +00:00
Running 2s test @ http://127.0.0.1:8080/
1000 goroutine(s) running concurrently
355214 requests in 1.97068379s, 8.81MB read
Requests/sec: 180249.11
Transfer/sec: 4.47MB
Avg Req Time: 5.547877ms
Fastest Request: 30.66µs
Slowest Request: 95.208812ms
Number of Errors: 0
2024-03-07 17:09:51 +00:00
```
## License
Please see the [license documentation](https://akyoto.dev/license).
## Copyright
2024-03-27 21:12:16 +00:00
© 2024 Eduard Urbach