Version: v0.0.13

Introduction

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)

Few Hightlights:

  • โœ… Easy to setup and configure
  • โœ… Handle multiple queues with ease
  • โœ… Harnesses the powerful DI system by NestJS for creating jobs
  • โœ… Configurable messages, queues and jobs