using hgetall instead of hkeys+asynchget, simplifying meta.js, closes #157

v1.18.x
Julian Lam 12 years ago
parent cbd34a4411
commit 81f94c56e0

@ -7,32 +7,15 @@ var utils = require('./../public/src/utils.js'),
(function(Meta) {
Meta.config = {
get: function(callback) {
var config = {};
async.waterfall([
function(next) {
RDB.hkeys('config', function(err, keys) {
next(err, keys);
});
},
function(keys, next) {
async.each(keys, function(key, next) {
RDB.hget('config', key, function(err, value) {
if (!err) {
config[key] = value;
}
next(err);
});
}, next);
}
], function(err) {
RDB.hgetall('config', function(err, config) {
if (!err) {
config.status = 'ok';
callback(config);
} else callback({
status: 'error'
});
} else {
callback({
status: 'error'
});
}
});
},
set: function(field, value, callback) {

Loading…
Cancel
Save