2017-07-23 03:56:46 +00:00
|
|
|
const Redis = require('ioredis')
|
|
|
|
const { isPlainObject } = require('lodash')
|
|
|
|
|
2018-02-04 05:53:13 +00:00
|
|
|
/* global wiki */
|
2017-07-23 03:56:46 +00:00
|
|
|
|
2018-02-04 05:53:13 +00:00
|
|
|
module.exports = {
|
2017-07-23 03:56:46 +00:00
|
|
|
init() {
|
|
|
|
if (isPlainObject(wiki.config.redis)) {
|
2017-08-03 03:47:11 +00:00
|
|
|
let red = new Redis(wiki.config.redis)
|
|
|
|
red.on('ready', () => {
|
2017-12-24 05:34:47 +00:00
|
|
|
wiki.logger.info('Redis connection: [ OK ]')
|
2017-08-03 03:47:11 +00:00
|
|
|
})
|
2017-11-13 04:48:19 +00:00
|
|
|
red.on('error', () => {
|
|
|
|
wiki.logger.error('Failed to connect to Redis instance!')
|
|
|
|
process.exit(1)
|
|
|
|
})
|
2017-08-03 03:47:11 +00:00
|
|
|
return red
|
2017-07-23 03:56:46 +00:00
|
|
|
} else {
|
|
|
|
wiki.logger.error('Invalid Redis configuration!')
|
|
|
|
process.exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|