Introducing How-To Use RabbitMQ with Masonite queues

masonite2.0

Introduction

This feature requires Masonite 2.0.30 +

Queues are a fantastic way to keep your application quick and snappy. Anything that does not require a return value and/or is time intensive can be placed in a queue and ran at a later date. Using queues can decrease the time it takes to load pages and increase the user experience. There are many situations where using a queue is beneficial. These include but not limited to:

  • Updating arbitrary values in the database when a user signs up (like account login information)
  • Sending a welcome or promotion email ...

But wait! Theres more! Sign up for free today to read the rest of the article