|
|
|
|
|
by PaulHoule
1512 days ago
|
|
Per-core performance is one thing, realized performance on today's multi-core machines is something else. I have been writing back ends in Java and C# for more than a decade and it is widespread for people to take advantage of multi-core systems in two ways if they can: (1) threads sharing data structures such as system configuration and caches (e.g. it is no problem to have 10 or 100 megabytes of configuration data for a Java-based system) and (2) using Executors to split up tasks into smaller pieces and running them concurrently. In Node.js, Python, and other GIL languages you can't do the above and slow down from "configuration at the speed of RAM" to "parsing configuration over and over again", "configuration at the speed of the database", etc. I see people using Node.js for build systems but I think it's still an unusual choice (like Python) for a back end for a commercial system. |
|