Updated: Feb 19, 2021 — 2 min Read — #queues
If the worker doesn't exit after a restart signal and you checked its status, you'll find the uptime much longer. If that's the case, here are a couple of things to check.
Updated: Feb 19, 2021 — 1 min Read — #queues
Job Encryption was introduced in Laravel v8.19.0. Let's see why you might need it and how you can use it.
Updated: Feb 19, 2021 — 3 min Read — #databases #queues #notifications
Using database transactions is a powerful way to ensure data integrity. However, it's a bit tricky to control how non-sql code that runs around database transactions behaves when transactions are committed or rolled back. In this post, we'll look into the new transactions management capabilities in Laravel 8.
🔥 Quick Dip — Updated: Nov 13, 2020
🔥 Quick Dip — Updated: Nov 9, 2020
Updated: Feb 19, 2021 — 1 min Read — #queues
With a few simple changes, we are going to ensure only a single instance of a given job exists in the queue at any given time.
Updated: Oct 21, 2020 — 1 min Read — #queues
To design reliable queued jobs, we must consider each stage the jobs go through. In this post, we're going to look at one of the most important things to consider when designing a queued job.
Updated: Feb 19, 2021 — 1 min Read — #queues
Avoiding memory leaks can be a bit challenging. Over time, some references will pile up in the server memory that won't be detected by PHP. In this post, we'll look at our options in dealing with this.
"Laravel Queues in Action" is a premium eBook that helps you utilize the power of queues to make your applications faster and more reliable while reducing running costs.
Check it out
Updated: Sep 16, 2020 — 1 min Read — #queues
Each of the queue drivers supported by Laravel has its pros and cons, and sometimes you may want to switch between drivers to accommodate business needs. In this post we're going to look into the possible ways to switch between drivers.
Updated: Sep 7, 2020 — 3 min Read — #queues
Laravel 8 ships with a neat feature that allows us to dispatch a group of jobs to the queue to be executed in parallel. In this post, we're going to look into how this works under the hood.
Updated: Sep 11, 2020 — 3 min Read — #queues
Laravel 8 ships with cool new features as well as some changes to the queue component. In this post we'll look into these features and changes.
Updated: Feb 19, 2021 — 3 min Read — #queues
In this post, we're going to look into handling queued jobs while deploying your applications. We'll discuss restarting normal workers & Horizon workers as well as handling migrations.
Updated: Sep 8, 2020 — 2 min Read — #queues
In this post, We'll see how we may deal with a queued job that sends an HTTP request to an API that only allows 30 requests per minute.
Updated: Sep 8, 2020 — 2 min Read — #queues
Learn how you can use use Laravel Queues to re-use the same job instance multiple times to execute different logic.
Updated: May 25, 2020 — 1 min Read — #multi-tenancy #queues
A look into preventing one tenant that's pushing too many jobs from delaying job processing of other tenants.
Updated: May 13, 2020 — 1 min Read
In this post I discuss the backend-for-frontend pattern and how it can be used in a monolith application.
Updated: May 17, 2020 — 2 min Read — #multi-tenancy
I recently started a deep dive into multi-tenancy in Laravel, specifically the database-per-tenant approach, and created a video on how to achieve multi-tenancy without any packages...
Updated: Apr 20, 2020 — 1 min Read
Updated: Mar 9, 2020 — 1 min Read — #queues
In this series of video tweets, I've explained some of the most confusing Queue configuration keys
🔥 Quick Dip — Updated: Feb 18, 2020