--
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
V8's heap size is limited to 1 GB but Buffer objects exist largely
outside the heap. With large uploads, the bulk of your data lives in
buffers. It should hardly be touching the heap.
Would it help you to be able to process the upload as a stream of
objects? Could you just execute one function on each object and then
forget it or so? In that case, have a look at my halfstreamxml package
(for JSON, something similar should be possible, too):
https://github.com/thejh/node-halfstreamxml