by YorickPeterse on 9/6/24, 3:52 PM with 5 comments
by nyrikki on 9/6/24, 4:26 PM
1) Moore's law for single cores has been over for a while 2) We are necessarily in a distributed world 3) Amdahl's law still applies 4) Concurrent operations would still be needed.
by wmf on 9/6/24, 4:52 PM
Using raw threads also has its own footguns but fortunately we have libraries like j.u.c and TBB to provide safer abstractions over threads. Unfortunately these libraries matured after async so most programmers aren't familiar with concepts like fork/join.