Earlier quoted context omitted.
Yep, but the reason we care about it is exactly because it affects Node.
The reason you care about it is because it affects Node. I'm more interested in V8 than Node to be honest.
Node.js Has 1 Gb Memory Limit
11–20 of 45 posts
Re: Node.js Has 1 Gb Memory Limit
#12Earlier quoted context omitted.
The reason you care about it is because it affects Node. I'm more interested in V8 than Node to be honest.
No doubt. This comment really struck me as off-tone: "Sorry, Google, but your open-source project is important to much more of the world than just >your browser you huge You know Google is biting their tongue at what they really want to say to complainers like this. You really want it working for Node? Roll up your sleeves and get to refactoring. Hell, they even explained how to fix it.
Re: Node.js Has 1 Gb Memory Limit
#13Re: Node.js Has 1 Gb Memory Limit
#14Re: Node.js Has 1 Gb Memory Limit
#15Re: Node.js Has 1 Gb Memory Limit
#16Buffers are used all over the place in node, which should mitigate the degree to which this is actually a problem. Even if this bug report stays a wontfix, it won't affect my decision to use node because of Buffer support.
Re: Node.js Has 1 Gb Memory Limit
#17Re: Node.js Has 1 Gb Memory Limit
#18What rude and demanding bug reports.
Re: Node.js Has 1 Gb Memory Limit
#19Relevant snippets: "diego.ca...@gmail.com, Sep 19, 2010 ... In my case, I've been forced to suddenly stop my work ... with node.js because it cannot handle more than ~140K websockets concurrent connections ..." "erik.corry, Nov 2, 2010 The limit for 64 bit V8 is around 1.9Gbytes now. Start V8 with the --max-old-space-size=1900 flag."
I'm doing something similar with node.js now to handle millions of concurrent connections. I use multiple node.js servers to handle it. Not only it helps in even out the load, it has the nice failover property. One node down doesn't mean the whole app is down. Clients of the down node migrate their connections to the rest of the nodes.