bull不带redis的队列管理

ajsxfq5m  于 2021-06-10  发布在  Redis
关注(0)|答案(1)|浏览(503)

不使用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 }

//////////////////////////////////////////////////////////////////////////////////////////

1cklez4t

1cklez4t1#

bull构建在redis之上,这是它的后端。没有redis你就无法使用它。您可以实现某种定制系统,不需要使用rxjs和一些状态管理的redis,但是bull必须有redis。

相关问题