Improve redis config
This commit is contained in:
parent
948a133b7b
commit
5a0a297634
@ -19,6 +19,8 @@ export type Source = {
|
|||||||
host: string;
|
host: string;
|
||||||
port: number;
|
port: number;
|
||||||
pass: string;
|
pass: string;
|
||||||
|
db?: number;
|
||||||
|
prefix?: string;
|
||||||
};
|
};
|
||||||
elasticsearch: {
|
elasticsearch: {
|
||||||
host: string;
|
host: string;
|
||||||
|
@ -5,6 +5,8 @@ export default config.redis ? redis.createClient(
|
|||||||
config.redis.port,
|
config.redis.port,
|
||||||
config.redis.host,
|
config.redis.host,
|
||||||
{
|
{
|
||||||
auth_pass: config.redis.pass
|
auth_pass: config.redis.pass,
|
||||||
|
prefix: config.redis.prefix,
|
||||||
|
db: config.redis.db || 0
|
||||||
}
|
}
|
||||||
) : null;
|
) : null;
|
||||||
|
@ -16,8 +16,9 @@ function initializeQueue(name: string) {
|
|||||||
port: config.redis.port,
|
port: config.redis.port,
|
||||||
host: config.redis.host,
|
host: config.redis.host,
|
||||||
password: config.redis.pass,
|
password: config.redis.pass,
|
||||||
db: 1
|
db: config.redis.db || 0,
|
||||||
}
|
},
|
||||||
|
prefix: config.redis.prefix ? `${config.redis.prefix}:queue` : 'queue'
|
||||||
} : null);
|
} : null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user