Queuing Background Jobs with Coravel
In one of my live streams on my YouTube Channel, I took a look at using Coravel to refactor some code that was sending out an email. Emailing is a good example of something that can be created as a background job that frees up your web application to return a result quicker to the client. Coravel Coravel gives you a zero-configuration queue that runs in-memory to offload long-winded tasks to the background instead of making your users wait for their HTTP request to finish! It’s pretty easy to get started to run background jobs with Coravel in your ASP.NET… Read More »Queuing Background Jobs with Coravel