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