tunny
A goroutine pool for Go (by Jeffail)
ants
🐜🐜🐜 ants is the most powerful and reliable pooling solution for Go. (by panjf2000)
tunny | ants | |
---|---|---|
3 | 8 | |
3,955 | 13,541 | |
1.0% | 1.3% | |
0.0 | 7.2 | |
about 2 years ago | 6 days ago | |
Go | Go | |
MIT License | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
tunny
Posts with mentions or reviews of tunny.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-11-25.
-
Show HN: Rill – Composable concurrency toolkit for Go
There are also libraries like https://github.com/Jeffail/tunny or https://pkg.go.dev/go.uber.org/goleak or https://github.com/fatih/semgroup to help deal with concurrency limits and goroutine lifecycle management.
As the author of https://github.com/ahmetb/go-linq, it's hard to find adoption for libraries offering "syntactic sugar" in Go, as the language culture discourages those kind of abstractions and keeping the code straightforward.
-
Help! channel vs workerpool
https://github.com/Jeffail/tunny uses interface, os it's a no for me
-
Show HN: Tasqueue – A simple, customisable distributed job/worker in Go
Is this a more advanced version of Tunny [0]?
[0] https://github.com/Jeffail/tunny
ants
Posts with mentions or reviews of ants.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-04-04.
-
Rust vs Go Issue
I remember doing something similar to OP recently. Goroutines also incur a bit of overhead (have to be GC'd and so on), and the same worker pool technique can be applied to them in much the same way, as seen in popular libraries like https://github.com/panjf2000/ants
-
Beginner ~ Intermediate Go programmer, how can I get better in go and get out of the "beginner" phase?
The best example I can give you is https://github.com/nutsdb/nutsdb it’s great project that got me started, one thing one should know is Go is different “yep” so there’re some coding habits that may bite you in Go and the Go compiler won’t correct you, you wanna learn about optimizations, unsafe usage check out https://github.com/valyala/fasthttp (note this is deep the rabbit hole), wanna learn concurrency check out ants https://github.com/panjf2000/ants with a little aid from “Go by example” you’re good to go
-
Conc: Better Structured Concurrency for Go
conc seem similar to ant lib (https://github.com/panjf2000/ants). Is there any considerable difference between them?
-
[Side Project] Post automated Youtube videos from Reddit
But still, that looked hard to maintain, and I asked myself there has to be a better way to do this, just out of curiosity i googled and came across ants which seemed exactly right for this kind of functionality I wanted, so I converted the same function to use ants, and it became this:
-
Dynamic number of Goroutines based on load?
You can try use this one https://github.com/panjf2000/ants We are using that as well for that purpose
-
Itogami, the best golang thread-pool till date
Benchmarking was performed against existing golang threadpool implementations Ants and Gamma-Zero-Worker-Pool and unlimited goroutines
-
Hello! Please explain what a pool?
The readme of the project explains it very well: https://github.com/panjf2000/ants
-
Parapipe - FIFO paralleling pipeline with concurrent job processing
Looks interesting, but what new concepts/features does it bring to the table compared to the already battletested ants library? Link: https://github.com/panjf2000/ants
What are some alternatives?
When comparing tunny and ants you can also consider the following projects:
go-waitgroup - A sync.WaitGroup with error handling and concurrency control
pond - 🔘 Minimalistic and High-performance goroutine worker pool written in Go
workerpool - Go simple async worker pool
conc - Better structured concurrency for go
grpool - Lightweight Goroutine pool