UNPKG

pvserverhelper

Version:

This is an npm module design to perform common uses with pVelocity's pvserver

11 lines (9 loc) 251 B
### ``bulkExecute(bulk)`` Returns a promise that executes the bulk. - `bulk` `<Bulk>` ```js var bulk = mongoConn.collection('Test').initializeOrderedBulkOp(); bulk.find({name: 'hello'}).remove(); pvh.bulkExecute(bulk).then(function(result) { }); ```