cque
Asynq
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.
cque
-
Show HN: Tasqueue – A simple, customisable distributed job/worker in Go
Noice! I am keen to give this a go.. the broker code are small and seems easy enough to implement for different backends.
having a quick glance, it does remind me a lot of que-go (https://github.com/bgentry/que-go) that is inspired by similar project written in ruby which use postgresql lock cleverly to take tasks from queue, work on it and release lock.
I liked the implementation so much and how easy it was to write worker for it, i ended up modifying it to use go channel (https://github.com/santrancisco/cque) as queue for worker task.. i used it in several personal projects over the years for cli tools that can leverage from having async tasks/jobs handle by workers.
Asynq
-
Supercharging Go with Asynq: Scalable Background Jobs Made Easy
Asynq is a Redis-backed task queue that simplifies async task processing in Go.
-
Show HN: Find your "holy grail piece", as a service
- Results arrive in your inbox, or using the search result page on the site
A demo account is available using the email address "[email protected]" and password "helloworld". A free plan is also available, and you can delete your account with a few clicks if you don't find a use.
This is my first "soft-launch" of the site to get feedback and refine the idea. Your thoughts and experience are appreciated!
The backend is Go services using Asynq[0] for task queueing among the worker nodes. oapi-codegen[1] + an OpenAPI schema manages the HTTP API implementation, interfacing with via a Vue3 frontend using the (venerable) Bootstrap framework.
[0] https://github.com/hibiken/asynq
-
Looking for a language agnostic Go task queue with Redis
EDIT : I think the best for my case will be to use the asynq library with a custom js client, it's quite easy to implement (Detailed here)
-
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?
Asynq does this pretty nicely https://github.com/hibiken/asynq/wiki/Periodic-Tasks
-
Examples of using task scheduler with Go?
Asynq looks promising. Never used it myself. https://github.com/hibiken/asynq
-
Recommendation for a selfhosted worker/task queue runner?
Never used it, but it appears to fit most of the criteria. https://github.com/hibiken/asynq
- How to run periodic tasks?
-
What would you rewrite in Golang?
https://github.com/hibiken/asynq is pretty close
-
Suggestions for CRON jobs queue tool
I tried it 2 months ago and it was not suitable for dynamic CRON job enqueue scheduling
-
I’m looking for a suggestion for a queuing library
My current best option is AsynQ (https://github.com/hibiken/asynq but it uses redid and not Postgres for the db
What are some alternatives?
Tasqueue - A background jobs library for Go that allows pluggable brokers/store for distribution.
machinery - Machinery is an asynchronous task queue/job queue based on distributed message passing.