I'd like to perform Drop Database, Drop Collection Index, getIndex() and e.t. such functions using mongoose, nodeJS.
I was looking around the same issues, but haven't got any solutions yet.
I'll appreciate any help.
I'd like to perform Drop Database, Drop Collection Index, getIndex() and e.t. such functions using mongoose, nodeJS.
I was looking around the same issues, but haven't got any solutions yet.
I'll appreciate any help.
store.collection('sessions',function(err, collection){
collection.remove({},function(err, removed){
});
});