gozawp is the Go zero allocation worker pool. This project heavily borrows from fasthttp, so much so that 99% of the code found here is taken from fasthttp.
The reason this project was created was for another project that used many of the principles applied in fasthttp and during that project, there was an issue with making the server concurrent.
Essentially, if the server wasn't concurrent, it didn't make any allocations and if it was, it made 1 allocation per operation.
That wasn't a result that was intended so gozawp was created. gozawp can be utilized by many projects especially regarding network or protocols.
To visit gozawp, check the repository.