wikijs-fork/server/core/redis.js

24 lines
557 B
JavaScript
Raw Normal View History

const Redis = require('ioredis')
const { isPlainObject } = require('lodash')
/* global wiki */
module.exports = {
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
})
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
} else {
wiki.logger.error('Invalid Redis configuration!')
process.exit(1)
}
}
}