Hacker News new | ask | show | jobs
by im3w1l 2758 days ago
> Pass thousands of files to a single compiler invocation?

Sure. Or pass it a file with all the filenames. Or have the compiler work as a server that takes compilation requests over a socket. It's not like passing thousands of filenames between two processes is a deep unsolved problem.

2 comments

Or just spawn thousands of processes which has been done for the last 40 years without particular issues.
So, the solution to concurrency problems is to serialize everything?
"Concurrency is everything serialised, properly."
The posts we are replying to here seem to have a very narrow concept of what 'properly' entails in this case.