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