How to run tasks in parallel with an async codebase

2021-06-08 Thread jasonfi
Thanks, but your library appears to expect threads (to me, at least).

How to run tasks in parallel with an async codebase

2021-06-08 Thread planetis
You can try my [lib](https://github.com/planetis-m/sync). However I have never tried it together with async.

How to run tasks in parallel with an async codebase

2021-06-07 Thread jasonfi
I've written my code to use an async style, that is, I have globals (especially for DB access), and the procs are called by a web-service. This works well, but now I need to run a program from time to time that must spawn tasks in parallels. The same code can't have globals and thread-style gcsa