redis - added mget and multi, finished initial topics listview on home page, finished get topics method calls

This commit is contained in:
psychobunny
2013-04-24 22:24:20 +00:00
parent 877219cb58
commit a16f72e11c
6 changed files with 106 additions and 13 deletions

View File

@@ -62,7 +62,7 @@ var fs = require('fs');
for (var d in data) {
if (data.hasOwnProperty(d)) {
if (data[d] instanceof String) {
if (data[d] instanceof String || data[d] === null) {
continue;
} else if (data[d].constructor == Array) {
namespace += d;