25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

8 lines
240 B

  1. const config = require('./config');
  2. if (config.redis) {
  3. const redis = require('redis');
  4. global.redisClient = redis.createClient(config.redis === true ? 'redis://redis' : config.redis);
  5. }
  6. module.exports = global.redisClient;