forked from dial-once/node-cache-manager-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
258 lines (225 loc) · 6.44 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
'use strict';
var RedisPool = require('sol-redis-pool');
var EventEmitter = require('events').EventEmitter;
/**
* The cache manager Redis Store module
* @module redisStore
* @param {Object} [args] - The store configuration (optional)
* @param {String} args.host - The Redis server host
* @param {Number} args.port - The Redis server port
* @param {Number} args.db - The Redis server db
* @param {function} args.isCacheableValue - function to override built-in isCacheableValue function (optional)
*/
function redisStore(args) {
var self = {
name: 'redis',
events: new EventEmitter()
};
// cache-manager should always pass in args
/* istanbul ignore next */
var redisOptions = args || {};
var poolSettings = redisOptions;
redisOptions.host = args.host || '127.0.0.1';
redisOptions.port = args.port || 6379;
var pool = new RedisPool(redisOptions, poolSettings);
pool.on('error', function(err) {
self.events.emit('redisError', err);
});
/**
* Helper to connect to a connection pool
* @private
* @param {Function} cb - A callback that returns
*/
function connect(cb) {
pool.acquire(function(err, conn) {
if (err) {
pool.release(conn);
return cb(err);
}
/* istanbul ignore else */
if (args.db || args.db === 0) {
conn.select(args.db);
}
cb(null, conn);
});
}
/**
* Helper to handle callback and release the connection
* @private
* @param {Object} conn - The Redis connection
* @param {Function} [cb] - A callback that returns a potential error and the resoibse
* @param {Object} [opts] - The options (optional)
*/
function handleResponse(conn, cb, opts) {
opts = opts || {};
return function(err, result) {
pool.release(conn);
if (err) {
return cb && cb(err);
}
if (opts.parse) {
result = JSON.parse(result);
}
if (cb) {
cb(null, result);
}
};
}
/**
* Get a value for a given key.
* @method get
* @param {String} key - The cache key
* @param {Object} [options] - The options (optional)
* @param {Function} cb - A callback that returns a potential error and the response
*/
self.get = function(key, options, cb) {
if (typeof options === 'function') {
cb = options;
}
connect(function(err, conn) {
if (err) {
return cb && cb(err);
}
conn.get(key, handleResponse(conn, cb, {
parse: true
}));
});
};
/**
* Set a value for a given key.
* @method set
* @param {String} key - The cache key
* @param {String} value - The value to set
* @param {Object} [options] - The options (optional)
* @param {Object} options.ttl - The ttl value
* @param {Function} [cb] - A callback that returns a potential error, otherwise null
*/
self.set = function(key, value, options, cb) {
if (typeof options === 'function') {
cb = options;
options = {};
}
options = options || {};
var ttl = (options.ttl || options.ttl === 0) ? options.ttl : redisOptions.ttl;
connect(function(err, conn) {
if (err) {
return cb && cb(err);
}
var val = JSON.stringify(value);
if (ttl) {
conn.setex(key, ttl, val, handleResponse(conn, cb));
} else {
conn.set(key, val, handleResponse(conn, cb));
}
});
};
/**
* Delete value of a given key
* @method del
* @param {String} key - The cache key
* @param {Object} [options] - The options (optional)
* @param {Function} [cb] - A callback that returns a potential error, otherwise null
*/
self.del = function(key, options, cb) {
if (typeof options === 'function') {
cb = options;
options = {};
}
connect(function(err, conn) {
if (err) {
return cb && cb(err);
}
conn.del(key, handleResponse(conn, cb));
});
};
/**
* Delete all the keys of the currently selected DB
* @method reset
* @param {Function} [cb] - A callback that returns a potential error, otherwise null
*/
self.reset = function(cb) {
connect(function(err, conn) {
if (err) {
return cb && cb(err);
}
conn.flushdb(handleResponse(conn, cb));
});
};
/**
* Returns the remaining time to live of a key that has a timeout.
* @method ttl
* @param {String} key - The cache key
* @param {Function} cb - A callback that returns a potential error and the response
*/
self.ttl = function(key, cb) {
connect(function(err, conn) {
if (err) {
return cb && cb(err);
}
conn.ttl(key, handleResponse(conn, cb));
});
};
/**
* Returns all keys matching pattern.
* @method keys
* @param {String} pattern - The pattern used to match keys
* @param {Function} cb - A callback that returns a potential error and the response
*/
self.keys = function(pattern, cb) {
if (typeof pattern === 'function') {
cb = pattern;
pattern = '*';
}
connect(function(err, conn) {
if (err) {
return cb && cb(err);
}
conn.keys(pattern, handleResponse(conn, cb));
});
};
/**
* Specify which values should and should not be cached.
* If the function returns true, it will be stored in cache.
* By default, it caches everything except null and undefined values.
* Can be overriden via standard node-cache-manager options.
* @method isCacheableValue
* @param {String} value - The value to check
* @return {Boolean} - Returns true if the value is cacheable, otherwise false.
*/
self.isCacheableValue = args.isCacheableValue || function(value) {
return value !== null && value !== undefined;
};
/**
* Returns the underlying redis client connection
* @method getClient
* @param {Function} cb - A callback that returns a potential error and an object containing the Redis client and a done method
*/
self.getClient = function(cb) {
connect(function(err, conn) {
if (err) {
return cb && cb(err);
}
cb(null, {
client: conn,
done: function(done) {
var args = Array.prototype.slice.call(arguments, 1);
pool.release(conn);
if (done && typeof done === 'function') {
done.apply(null, args);
}
}
});
});
};
/**
* Expose the raw pool object for testing purposes
* @private
*/
self._pool = pool;
return self;
}
module.exports = {
create: function(args) {
return redisStore(args);
}
};