|
|
|
|
|
by rubiquity
4233 days ago
|
|
> I'll chalk this one up to the PR/marketing person This entire web server is a marketing hype since day one. I imagine they are trying to build a pro product and support company out of this. It's a web server with event loops and some fancy memory allocation. Shouldn't Node.js have taught us all by now the perils of event loops and insanely tweaked HTTP parsers? Sure, it looks great for "Hello World" benchmarks but falls right on its face as soon as you have an app of significant size spending real time on CPU. |
|
I also wonder how their hybrid evented/threading/process model works in the presence of a GIL (which, last I checked, Ruby still has) and in the presence of blocking socket calls (which, last I checked, both the MySQL and PostGres APIs used).