http://nodejs.org/api/fs.html#fs_fs_appendfile_filename_data_options_callback
Does fs.appendFile support file links to make uploads faster? (rather than opening / closing each entry)
What is the fastest way to write to a CSV file. I have an appendfile for writing newlines to a CSV file. Will the recording stream be faster? (if the appendfile opens the file every time)
Note: in fact, I write about 20 GB of CSV
Followup: I can confirm that createWriteStream is much faster than appendFile
samol source
share