Clean up redis store

This commit is contained in:
John Crepezzi 2011-11-18 19:59:41 -05:00
parent 00e2ca8d29
commit 44350ce9e6
2 changed files with 18 additions and 15 deletions

1
TODO
View file

@ -1,5 +1,4 @@
cache headers for static assets cache headers for static assets
make redis connection into a separate method
tests tests

View file

@ -2,9 +2,14 @@ var redis = require('redis');
var winston = require('winston'); var winston = require('winston');
var hashlib = require('hashlib'); var hashlib = require('hashlib');
// TODO move to a different method (conn)
var RedisDocumentStore = function(options) { var RedisDocumentStore = function(options) {
if (!RedisDocumentStore.client) { if (!RedisDocumentStore.client) {
RedisDocumentStore.connect(options);
}
};
// Create a connection according to config
RedisDocumentStore.connect = function(options) {
var host = options.host || '127.0.0.1'; var host = options.host || '127.0.0.1';
var port = options.port || 6379; var port = options.port || 6379;
var index = options.db || 0; var index = options.db || 0;
@ -18,7 +23,6 @@ var RedisDocumentStore = function(options) {
winston.info('connected to redis on ' + host + ':' + port + '/' + index); winston.info('connected to redis on ' + host + ':' + port + '/' + index);
} }
}); });
}
}; };
// Save file in a key // Save file in a key