It's scary what you can do with machine translation these days...
The author of Nginx on why V8 is not suitable for web servers
51–60 of 75 posts
Re: The author of Nginx on why V8 is not suitable for web servers
#52It's scary what you can do with machine translation these days...
Re: The author of Nginx on why V8 is not suitable for web servers
#53Speaking only for myself as ever: Handling out of memory errors is a hard problem. At the point when you can't allocate more memory you are busted in most languages. For example in C a slightly deeper function call depth can cause the stack to expand at any point. If that point coincides with you running out of memory then you are busted. No program can keep running with a broken stack. If V8 were capable of recoveri…
node.js (one process for many requests) is a different model than the author is considering; no matter its (dis)advantages, integrating it into the server is not nearly as advantageous as for a process-per-request model (like mod_php).
Re: The author of Nginx on why V8 is not suitable for web servers
#54IIRC, on Linux at least the memory allocation thing is moot. If your process runs out of memory, it dies anyway. You can't catch "malloc says no" because malloc never says no. It either says yes or blows your process's brains out.
"malloc never says no" malloc says no if you set a ulimit in your shell. I do this on the desktop to stop myself from shooting myself in the foot. (Recent kernels also let you turn off the overcommitting behavior.)
Re: The author of Nginx on why V8 is not suitable for web servers
#55Re: The author of Nginx on why V8 is not suitable for web servers
#56Re: The author of Nginx on why V8 is not suitable for web servers
#57in russian : Почему Google V8 пока не подходит для встраивания в серверы in english : Why is Google V8 is not suitable for integration into servers. There is a word "integration" that the author of the post forgot to put in.
Why is Google V8 is not yet suitable for integration into servers.
Re: The author of Nginx on why V8 is not suitable for web servers
#58Likewise, Nginx is not suitable as a reverse proxy for streaming web servers, since Nginx proxies HTTP 1.0 not HTTP 1.1.
Re: The author of Nginx on why V8 is not suitable for web servers
#59Earlier quoted context omitted.
It likely was not completely translated by machine. Google Translate lets anyone reading the translation edit it to fix errors. Highlight some text and notice the link that appears allowing you to "Contribute a better translation" for that particular passage.
It's more likely that it only helps train Google Translate, and doesn't actually apply any changes directly to the translated text. Otherwise vandalism would be way too easy.
When I corrected it, the old one was left in place.
Re: The author of Nginx on why V8 is not suitable for web servers
#60It's scary what you can do with machine translation these days...