removing leveldb from our dbal

a) It isn't being maintained, especially not by me
b) I haven't seen anybody actually interested in this db software so
there's no real point in supporting it unless we have a few people who
are interested

If you ARE interested though - please contact me and we can figure
something out in future :)
This commit is contained in:
psychobunny
2014-10-09 00:33:09 -04:00
parent daf967399f
commit b42e57bfdd
9 changed files with 3 additions and 797 deletions

View File

@@ -15,9 +15,6 @@ var async = require('async'),
},
"mongo": {
"dependencies": ["mongodb", "connect-mongo"]
},
"level": {
"dependencies": ["levelup", "leveldown", "connect-leveldb"]
}
};
@@ -161,8 +158,7 @@ function setupConfig(next) {
var config = {},
redisQuestions = require('./database/redis').questions,
mongoQuestions = require('./database/mongo').questions,
levelQuestions = require('./database/level').questions,
question, x, numQ, allQuestions = questions.main.concat(redisQuestions).concat(mongoQuestions.concat(levelQuestions));
question, x, numQ, allQuestions = questions.main.concat(redisQuestions).concat(mongoQuestions);
for(x=0,numQ=allQuestions.length;x<numQ;x++) {
question = allQuestions[x];