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