kesla / level-cbatch

A chainable api for batch() in levelup

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#level-cbatchbuild status

A chainable api for batch() in levelup

example

levelup(dir, { createIfMissing: true }, function(err, db) {
    cbatch(db); 

    db.cbatch()
    	.put('foo', 'bar')
    	.del('hello')
    	.exec(callback);
});

About

A chainable api for batch() in levelup


Languages

Language:JavaScript 100.0%