In node.js application, I use the code 'console.log(process.memoryUsage());' to log the memory usage. The output is as below.
{ rss: 13664256, heapTotal: 6131200, heapUsed: 3396912 }
When I use the process monitor to check the memory usage of the node process. The memory size is 14.5M.
I have a couple of questions.
====UPDATE 6/19/2013===
My OS is Mac OS X snow leopard.
Regards,
Jeffrey