BullMQ with Upstash Redis
You can use BullMQ and Bull with Upstash Redis. BullMQ is a Node.js queue library that is built on top of Bull. It is a Redis-based queue library so you can use Upstash Redis as its storage.
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
npm install bullmq upstash-redis
import { Queue } from 'bullmq';
const myQueue = new Queue('foo', { connection: {
host: "UPSTASH_REDIS_ENDPOINT",
port: 6379,
password: "UPSTASH_REDIS_PASSWORD",
tls: {}
}});
async function addJobs() {
await myQueue.add('myJobName', { foo: 'bar' });
await myQueue.add('myJobName', { qux: 'baz' });
}
await addJobs();
Was this page helpful?