vitaly-t
vitaly-t

Reputation: 25840

Using large memory with NodeJS / IO.JS

I'm looking at using NodeJS or IO.JS for a server app that requires a lot of RAM, 4-8GB, possibly more.

Considering the most up-to-date version of V8 and IO.JS (current is 3.3.0):

Please, any cons and pros using NodeJS for such an app are welcome!

Upvotes: 0

Views: 319

Answers (1)

Yuri Zarubin
Yuri Zarubin

Reputation: 11677

A big con would be that 64-bit Node.js applications have a memory limit of 1.4 GB. Node isn't good for large monolithic servers, it's more suited for scaling out by spawning additional processes.

Upvotes: 0

Related Questions