-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathredis.ts
58 lines (52 loc) · 1.62 KB
/
redis.ts
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
import * as Redis from 'ioredis'
import IORedis = require('ioredis');
const redis = new Redis(6379, process.env.REDIS_HOST)
const redisSubscriber = redis.duplicate()
let redisConnected = false
let redisSubConnected = false
redisSubscriber.on('connect', async () => {
redisSubConnected = true
console.log('Redis sub connected')
await redisSubscriber.subscribe('conn-notif')
await redisSubscriber.subscribe('list-change')
await redisSubscriber.subscribe('glyph-updates')
await redisSubscriber.subscribe('glyph-removals')
})
redis.on('connect', async () => {
redisConnected = true
console.log('Redis connected')
await redis.set('connections', 0)
})
function getRedis () : Promise<IORedis.Redis> {
return new Promise((resolve) => {
let resolved = false
redis.on('connect', () => {
resolve(redis)
redisConnected = true
resolved = true
})
// Push code to the bottom of the event loop
setTimeout(() => {
if(redisConnected && !resolved) {
resolve(redis)
}
}, 0)
})
}
function getRedisSubscriber() : Promise<IORedis.Redis> {
return new Promise((resolve) => {
let resolved = false
redisSubscriber.on('connect', () => {
resolve(redisSubscriber)
redisSubConnected = true
resolved = true
})
// Push code to the bottom of the event loop
setTimeout(() => {
if(redisSubConnected && !resolved) {
resolve(redisSubscriber)
}
}, 0)
})
}
export { getRedis, getRedisSubscriber }