Skip to main content

Queue

We have built a simple and very effective queue package for your nestjs applications.

Queues are a form of asynchronous service-to-service communication used in backend architecture. They can be used to decouple or defer heavy weight processing such as sending Mails, processing large database operations etc. Messages are kept in queue until processed. Seperating these heavy time consuming tasks drastically improves your response.

Above all, you can easily perform the processing of the messages on the distributed system without causing any workload spike on your consumer-facing server ever again. 😎

Supported Queues:

  • Sync
  • AWS SQS
  • Redis
  • RabbitMQ (Coming Soon)
  • Beanstalkd (Coming Soon)

Some features:

  • ✅ Easy Setup
  • ✅ In-built fault tolerance
  • ✅ Multiple Queue Managers

To learn more about it, you can have a go through the documentation at the official site