"use strict"; module.exports = function(redisClient, module) { module.searchIndex = function(key, content, id, callback) { if (key === 'post') { module.postSearch.index(content, id, callback); } else if(key === 'topic') { module.topicSearch.index(content, id, callback); } }; module.search = function(key, term, limit, callback) { function search(searchObj, callback) { searchObj .query(term) .between(0, limit - 1) .type('or') .end(callback); } if(key === 'post') { search(module.postSearch, callback); } else if(key === 'topic') { search(module.topicSearch, callback); } }; module.searchRemove = function(key, id, callback) { if(key === 'post') { module.postSearch.remove(id, callback); } else if(key === 'topic') { module.topicSearch.remove(id, callback); } }; module.flushdb = function(callback) { redisClient.send_command('flushdb', [], function(err) { if (typeof callback === 'function') { callback(err); } }); }; module.info = function(callback) { redisClient.info(function (err, data) { if(err) { return callback(err); } var lines = data.toString().split("\r\n").sort(); var redisData = {}; lines.forEach(function (line) { var parts = line.split(':'); if (parts[1]) { redisData[parts[0]] = parts[1]; } }); redisData.raw = JSON.stringify(redisData, null, 4); redisData.redis = true; callback(null, redisData); }); }; module.exists = function(key, callback) { redisClient.exists(key, function(err, exists) { callback(err, exists === 1); }); }; module.delete = function(key, callback) { redisClient.del(key, callback); }; module.deleteAll = function(keys, callback) { var multi = redisClient.multi(); for(var i=0; i