An open API service indexing awesome lists of open source software.

https://github.com/kisasexypantera94/fizer

Fibers for Zig.
https://github.com/kisasexypantera94/fizer

async asynchronous concurrency coroutines fiber green-threads multithreading stackful-coroutines

Last synced: 5 months ago
JSON representation

Fibers for Zig.

Awesome Lists containing this project

README

          

# Fizer
Fizer is a lightweight fibers library for Zig, focused on delivering elegant and user-friendly concurrency.

## Usage
- [Singlethreaded](src/test_singlethreaded.zig)
- [Multithreaded](src/test_multithreaded.zig)
- [TCP](src/test_tcp.zig)

```bash
zig build test -Dtest-filter=multi
```

## References
- [oatz](https://github.com/SuperAuguste/oatz)
- [Concurrency course by Roman Lipovsky](https://www.youtube.com/watch?v=eBQi3Y2p_eQ&list=PL4_hYwCyhAva37lNnoMuBcKRELso5nvBm&index=5)
- [YACLib](https://github.com/YACLib/YACLib)
- [userver mutex implementation details](https://www.youtube.com/live/DgS9p40-Xfw?si=nuvGcwo2XOk2DU0m&t=424)