--
Job Board: http://jobs.nodejs.org/
Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to nod...@googlegroups.com
To unsubscribe from this group, send email to
nodejs+un...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en
It might be hard but it's safer. I would not advise you to have a
single
36GB+ process. If this will handle several clients, you have advantages
splitting into several workers.
- Start/stop workers as needed (depending on load)
- Upgrades without disturbing clients
- No single point of failure at least for your client requests
---
Diogo R.
The 0.6.x releases ship with V8 3.6.x. There is still a hard upper
limit on the size of the V8 heap.
It's worth noting that data in buffers doesn't count towards the limit
(a single buffer cannot be larger than 2^30-1 bytes but that is still
quite large, of course).
Obviously you have to set the file descriptor limit high enough to
handle a lot of connections. The problem you're seeing could also
occur when you're using one client to make the connections to your
server, and that client just runs out of available ports.