Your Favorite Language is Probably Terrible at Concurrency too (functional-orbitz.blogspot.com) 14 points by mononcqc 14y ago ↗ HN
[–] trebor 14y ago ↗ The author raises some good points.However scaling across multiple workers while using a reverse proxy cache like nginx isn't terribly hard. And it can help make up for a less concurrent language/framework. [–] cbs 14y ago ↗ Load balancing is often necessary, but the necessity can often mask other underlying technical debt.Parallelism through multiple native processes can have a high cost from process overhead, effectiveness of IPC style chosen and separation of duties.
[–] cbs 14y ago ↗ Load balancing is often necessary, but the necessity can often mask other underlying technical debt.Parallelism through multiple native processes can have a high cost from process overhead, effectiveness of IPC style chosen and separation of duties.
2 comments
[ 6.2 ms ] story [ 12.6 ms ] threadHowever scaling across multiple workers while using a reverse proxy cache like nginx isn't terribly hard. And it can help make up for a less concurrent language/framework.
Parallelism through multiple native processes can have a high cost from process overhead, effectiveness of IPC style chosen and separation of duties.