--
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
When you have several fs.write()s going on at once, they may end up being executed in parallel in a bunch of (up to 4 IIRC) background (libeio's) threads, so the write()s may actually happen in ~ any order. If you instead wait for the callback before issuing the next write(), then you're serializing them.
--
Jorge.
--
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
On Mar 24, 2012, at 11:19 PM, Jaka Jančar wrote:
Alternatively, since this is a log file, you could use something like the winston
by Charlie Robbins.
– Micheil