Top 5 Go asynchronous-task Projects
-
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 just want to commend OP - if they’re here - for choosing an int64 for job IDs, and MD5 for hashing the payload in Neoq, the job library linked [0] from the article.
Especially given the emphasis on YAGNI, you don’t need a UUID primary key, and all of its problems they bring for B+trees (that thing RDBMS is built on), nor do you need the collision resistance of SHA256 - the odds of you creating a dupe job hash with MD5 are vanishingly small.
As to the actual topic, it’s fine IFF you carefully monitor for accumulating dead tuples, and adjust auto-vacuum for that table as necessary. While not something you’d run into at the start, at a modest scale you may start to see issues. May. You may also opt to switch to Redis or something else before that point anyway.
-
Onboard AI
Learn any GitHub repo in 59 seconds. Onboard AI learns any GitHub repo in minutes and lets you chat with it to locate functionality, understand different parts, and generate new code. Use it for free at www.getonboard.dev.
-
Project mention: I built cakework - open source platform to deploy computationally intensive Python functions as serverless jobs, with no timeouts | /r/Python | 2023-02-02
I put a quick start on the main project website: https://www.cakework.com/
-
-
-
InfluxDB
Collect and Analyze Billions of Data Points in Real Time. Manage all types of time series data in a single, purpose-built database. Run at any scale in any environment in the cloud, on-premises, or at the edge.
Go asynchronous-tasks related posts
- I built a platform to build serverless async backends without cloud resources
- I built cakework - open source platform to deploy computationally intensive Python functions as serverless jobs, with no timeouts
- Show HN: Serverless async back ends for compute-heavy operations
- Cancellable, Efficient and Reliable Distributed Task Queue in Go
Index
What are some of the best open-source asynchronous-task projects in Go? This list will help you:
Project | Stars | |
---|---|---|
1 | Asynq | 7,629 |
2 | neoq | 192 |
3 | cakework | 115 |
4 | nq | 90 |
5 | gohive | 45 |