The v0.12 branch has been created recently and we're currently focused on making it as rock solid as possible before we can release it as the 0.12.0 version that we've all been looking forward to. There are currently 32 open issues that need to be fixed before the release. Some of them will be triaged to other milestones in
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var queue = async.queue(function(task, callback) { | |
var ObjectId = mongoose.Types.ObjectId | |
var query = task.query | |
var update = task.update | |
var defer = task.defer | |
query._id['$in'] = _.map(query._id['$in'], ObjectId) | |
var queryStream = scenarios.find(query).stream() | |
queryStream.pipe(streamWorker).on('end', function(foo) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var async = require('async'), | |
dgram = require('dgram'); | |
var client = dgram.createSocket('udp4'); | |
var totalTimeTaken = 0; | |
var iterations = +process.argv[2]; | |
var completed = 0; | |
console.log('doing', iterations, 'iterations'); |