(Quite) a Few Words About Async

4 todsacerdoti 1 7/9/2025, 5:34:33 PM yoric.github.io ↗

Comments (1)

PaulHoule · 5h ago
I don't think threads are that hard if you're in a language that provides the right tools and has relative few footguns (e.g. Java) In Python or C++ God help you.

Even in Java you have to stick to java.util.concurrent, avoid synchronized and use Executors whenever you can.