-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathredis.js
63 lines (48 loc) · 1.91 KB
/
redis.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
/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2017 Zotero
https://www.zotero.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
***** END LICENSE BLOCK *****
*/
let { createClient, AbortError } = require('redis');
let config = require('config');
let log = require('./log');
let redisOptions = {
url: config.get('redis').url
};
// No need to buffer if we resubscribe on reconnect
redisOptions.enable_offline_queue = false;
// We have a custom re-subscriber
redisOptions.disable_resubscribing = true;
// Exponential retry - 100ms, 200ms, .., 1000ms
redisOptions.retry_strategy = function (options) {
if (options.error) {
log.error(options.error);
}
return Math.min(options.attempt * 100, 1000);
};
let client = createClient(redisOptions);
client.on('error', function (err) {
// Ignore command abort error (AbortError) that happens because of an inactive connection.
// We only use two Redis commands - 'subscribe' and 'unsubscribe'.
// If a connection fails, we reconnect and resubscribe.
// All the previous subscriptions die together with the previous connection
if (err instanceof AbortError && err.code === 'NR_CLOSED') return;
log.error(err);
});
client.on('reconnecting', function () {
log.info('Redis is reconnecting');
});
log.info("Connecting to " + redisOptions.url);
client.connect();
module.exports = client;