是否可以在不使用Redis的情况下使用Bull(用于工作管理)?
mu码:
@Injectable()
export class MailService {
private queue: Bull.Queue;
private readonly queueName = 'mail';
constructor() {
this.queue = new Bull(this.queueName)
}
addTaskToQueue() {
this.queue.process('send_mail',
async (job: Bull.Job, done: Bull.DoneCallback) => {
console.log('Send mail!');
console.log(JSON.stringify(job.data));
done();
})
}
async send(year: number, month: number) {
try{
await this.queue.add('send_mail', {
year,
month
});
console.log('done');
} catch(err){
console.log(err);
}
}
}
在运行控制台后,我向我抛出此错误:
{ Error: connect ECONNREFUSED 127.0.0.1:6379
at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1107:14)
errno: 'ECONNREFUSED',
code: 'ECONNREFUSED',
syscall: 'connect',
address: '127.0.0.1',
port: 6379 }
//////////////////////////////////////////// // /////////////////////////
答案 0 :(得分:1)
Bull建立在Redis的基础上,这就是后端。没有Redis,您将无法使用它。您可能可以使用RxJS和某种状态管理来实现某种不需要Redis之类的自定义系统,但是Bull必须具有Redis。