batch-write-stream

0.1.6 • Public • Published

batch-write-stream

Write stream that batches all writes done in the same tick.

Build Status

Install

$ npm install batch-write-stream --save

Use

Require

var BatchWriteStream = require('batch-write-stream');

Create

var stream = BatchWriteStream();

Or, with options:

var options = {
  highWaterMark: 100,  // default
  maxConcurrentBatches: 1 // default
};
 
var stream = BatchWriteStream(options);

Implement _writeBatch

stream._writeBatch = function(batch, cb) {
  // batch is an array
  // call cb when done
}

Map

You can map each value before it is written:

stream._map = function(d) {
  return transform(d);
};

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i batch-write-stream

Weekly Downloads

68

Version

0.1.6

License

MIT

Last publish

Collaborators

  • pgte