LaravelPerformanceThe Defer Helper- Apr 28, 2025Use the defer() helper to execute code after the HTTP response has been sent to the user, without setting up a queue.
LaravelPerformanceThe Once Helper for Memoization- Oct 27, 2024Use the new once() helper in Laravel 11 to easily cache the result of a usage for the duration of the request.
LaravelPerformanceAtomic Locks in Laravel- Jun 06, 2024Prevent race conditions and ensure only one instance of a task runs at a time using Laravel's Atomic Locks.