added indices on search key and id for mongo

v1.18.x
barisusakli 11 years ago
parent 3360752c5c
commit f81acd37db

@ -105,6 +105,12 @@
} }
}); });
db.collection('search').ensureIndex({key: 1, id: 1}, {background: true}, function(err) {
if(err) {
winston.error('Error creating index ' + err.message);
}
});
if(typeof callback === 'function') { if(typeof callback === 'function') {
callback(); callback();
} }

@ -13,7 +13,7 @@ module.exports = function(db, module) {
content: content content: content
}; };
db.collection('search').update({id:id, key:key}, {$set:data}, {upsert:true, w: 1}, function(err) { db.collection('search').update({key:key, id:id}, {$set:data}, {upsert:true, w: 1}, function(err) {
if(err) { if(err) {
winston.error('Error indexing ' + err.message); winston.error('Error indexing ' + err.message);
} }
@ -41,7 +41,7 @@ module.exports = function(db, module) {
module.searchRemove = function(key, id, callback) { module.searchRemove = function(key, id, callback) {
callback = callback || helpers.noop; callback = callback || helpers.noop;
db.collection('search').remove({id:id, key:key}, callback); db.collection('search').remove({key:key, id:id}, callback);
}; };
module.flushdb = function(callback) { module.flushdb = function(callback) {

Loading…
Cancel
Save