Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- const config = require('./config');
-
- if (config.redis) {
- const redis = require('redis');
- global.redisClient = redis.createClient(config.redis === true ? 'redis://redis' : config.redis);
- }
-
- module.exports = global.redisClient;
|