-
Hi, I'm starting a new project that involves distributing task on different (and possibly distributed) workers in Golang. So I'm looking for the best task queue library to use; for now the ones I like are the following (in no particular order): - asynq - machinery - taskq
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
-
Hi, I'm starting a new project that involves distributing task on different (and possibly distributed) workers in Golang. So I'm looking for the best task queue library to use; for now the ones I like are the following (in no particular order): - asynq - machinery - taskq
-
-
At work we use https://github.com/contribsys/faktory
-
https://github.com/RHEnVision/provisioning-backend/pull/373/files (search for pkg/worker directory, it is very small as you can see)
-
https://github.com/lzap/dejq (experimental repo - slightly more complicated implementation with task grouping which is a feature which I ended up dropping, also has SQS and DB implementations which we ended up not using)
Related posts
-
Are there any actively maintained or official Golang libraries for managing work queues?
-
Golang task queue
-
is there any go library that allows running background tasks after a specified period of time?
-
Looking for a language agnostic Go task queue with Redis
-
I have a web app that requires allowing users to schedule a recurring task at their own specified time/interval. How would you go about it?