2016-12-28 23:49:51 +01:00
|
|
|
import * as redis from 'redis';
|
2018-04-02 06:15:53 +02:00
|
|
|
import config from '../config';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2019-04-13 12:19:32 +02:00
|
|
|
export default redis.createClient(
|
2019-02-07 13:02:33 +01:00
|
|
|
config.redis.port,
|
|
|
|
config.redis.host,
|
|
|
|
{
|
2019-03-09 15:44:54 +01:00
|
|
|
auth_pass: config.redis.pass,
|
|
|
|
prefix: config.redis.prefix,
|
|
|
|
db: config.redis.db || 0
|
2019-02-07 13:02:33 +01:00
|
|
|
}
|
2019-04-13 12:19:32 +02:00
|
|
|
);
|