Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mookums/zzz
A framework for writing performant and reliable networked services.
https://github.com/mookums/zzz
http http-server https tls zig zig-package zzz
Last synced: about 4 hours ago
JSON representation
A framework for writing performant and reliable networked services.
- Host: GitHub
- URL: https://github.com/mookums/zzz
- Owner: mookums
- License: mpl-2.0
- Created: 2024-06-28T21:52:37.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-11-04T00:42:09.000Z (9 days ago)
- Last Synced: 2024-11-06T00:03:35.809Z (7 days ago)
- Topics: http, http-server, https, tls, zig, zig-package, zzz
- Language: Zig
- Homepage:
- Size: 679 KB
- Stars: 295
- Watchers: 4
- Forks: 9
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# zzz
![zzz logo](./docs/img/zzz.png)## Installing
Latest Zig Stable: `0.13.0`Latest zzz release: `0.2.0`
```
zig fetch --save git+https://github.com/mookums/zzz#v0.2.0
```You can then add the dependency in your `build.zig` file:
```zig
const zzz = b.dependency("zzz", .{
.target = target,
.optimize = optimize,
}).module("zzz");exe.root_module.addImport(zzz);
```## zzz?
zzz is a framework for writing performant and reliable networked services in Zig. It supports both HTTP and HTTPS (using BearSSL for TLS).zzz currently supports Linux, Mac and Windows. Linux is currently the reccomended target for deployments.
> [!IMPORTANT]
> zzz is currently **alpha** software and there is still a lot changing at a fairly quick pace and certain places where things are less polished.It focuses on modularity and portability, allowing you to swap in your own implementations for various things. Consumers can provide an async implementation, allowing for maximum flexibility. This allows for use in standard servers as well as embedded/bare metal domains.
For more information, look here:
1. [Getting Started](./docs/getting_started.md)
2. [HTTPS](./docs/https.md)
3. [Performance Tuning](./docs/performance.md)
4. [Custom Async](https://muki.gg/post/modular-async)## Optimization
zzz is **very** fast. Through a combination of methods, such as allocation at start up and avoiding thread contention, we are able to extract tons of performance out of a fairly simple implementation. zzz is quite robust currently but is still early stage software. It's currently been running in production, serving my [site](https://muki.gg).With the recent migration to [tardy](https://github.com/mookums/tardy), zzz is about as fast as gnet, the fastest plaintext HTTP server according to [TechEmpower](https://www.techempower.com/benchmarks/#hw=ph&test=plaintext§ion=data-r22), while consuming only ~22% of the memory that gnet requires.
![benchmark (request per sec)](./docs/benchmark/req_per_sec_ccx63_24.png)
[Raw Data](./docs/benchmark/request_ccx63_24.csv)
![benchmark (peak memory)](./docs/benchmark/peak_memory_ccx63_24.png)
[Raw Data](./docs/benchmark/memory_ccx63_24.csv)
On the CCX63 instance on Hetzner with 2000 max connections, we are 70.9% faster than [zap](https://github.com/zigzap/zap) and 83.8% faster than [http.zig](https://github.com/karlseguin/http.zig). We also utilize less memory, using only ~3% of the memory used by zap and ~1.6% of the memory used by http.zig.
zzz can be configured to utilize minimal memory while remaining performant. The provided `minram` example only uses 256 kB!
## Features
- Built on top of [Tardy](https://github.com/mookums/tardy), an asynchronous runtime.
- [Modular Asynchronous Implementation](https://muki.gg/post/modular-async)
- `io_uring` for Linux (>= 5.1.0).
- `epoll` for Linux (>= 2.5.45).
- `kqueue` for BSD & Mac.
- `busy_loop` for Linux, Mac and Windows.
- Single and Multithreaded Support
- TLS using BearSSL
- Memory Pooling for minimal allocations## Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in zzz by you, shall be licensed as MPL2.0, without any additional terms or conditions.