mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-02 20:16:04 +01:00
removed comments
This commit is contained in:
@@ -12,18 +12,7 @@ databaseController.get = function(req, res, next) {
|
|||||||
redis: function(next) {
|
redis: function(next) {
|
||||||
if (nconf.get('redis')) {
|
if (nconf.get('redis')) {
|
||||||
var rdb = require('../../database/redis');
|
var rdb = require('../../database/redis');
|
||||||
// var cxn = rdb.connect();
|
rdb.info(rdb.client, next);
|
||||||
// Do not create new client if it exist.
|
|
||||||
// This will cause memory leak & connection flood
|
|
||||||
var cxn = rdb.client;
|
|
||||||
// Redis was initalized.
|
|
||||||
// Check cxn is unnecessary.
|
|
||||||
// if (!cxn) {
|
|
||||||
// cxn = rdb.client;
|
|
||||||
// rdb.client = cxn;
|
|
||||||
// }
|
|
||||||
|
|
||||||
rdb.info(cxn, next);
|
|
||||||
} else {
|
} else {
|
||||||
next();
|
next();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -116,7 +116,6 @@
|
|||||||
// Create a new redis connection and store it in module (skeleton)
|
// Create a new redis connection and store it in module (skeleton)
|
||||||
rdb.client = rdb.connect();
|
rdb.client = rdb.connect();
|
||||||
|
|
||||||
//
|
|
||||||
module.sessionStore = new sessionStore({
|
module.sessionStore = new sessionStore({
|
||||||
client: rdb.client,
|
client: rdb.client,
|
||||||
ttl: 60 * 60 * 24 * 14
|
ttl: 60 * 60 * 24 * 14
|
||||||
|
|||||||
Reference in New Issue
Block a user