PHP
Dear Future Me: I Am Not Alone
Lisi Hocke on the challenges she faced the past few months during the pandemic. At the end of the post, she gives a few list of recommendations you can try to prevent a burn out. Read more…
Lisi Hocke on the challenges she faced the past few months during the pandemic. At the end of the post, she gives a few list of recommendations you can try to prevent a burn out. Read more…
We talk about cleverness as if itâs Just Bad, such as âclever code is harder to debugâ. Thatâs going too far. Cleverness can lead to faster, safer, even clearer code. Read More
Alex explains how we use Satis to give users of paid Spatie products access to private repos. Read More
Matt Stauffer on how to minimize Vue’s impact on the Core Web Vitals? Read More
My colleague Brent shares some thoughts on possible improvements to handling config values. Read More
Laravel transporter is an easy to use wrapper around Laravel PendingRequest that allows you to define requests as classes, and override options at run time when you need to. Read More
In this blog post, Jeffrey Way explains why and how he refactored Laracasts from a traditional server rendered app to an SPA using Inertia. Read More
[AdSense-A]
Last week we released a new version of spatie/laravel-event-sourcing. Version 5 is probably one of the largest releases since the beginning of the package. We've worked several months on it and have been testing it extensively already in our own projects.
In this post, my colleague Brent will walk you through all the changes and new functionalities.
(more…)[AdSense-A]
Our team has released a new Laravel package: spatie/laravel-artisan-dispatchable. This package allows you to dispatch any job from an artisan command.
In this blog post, I'd like to explain why we created the package and how you can use it.
Laravel's scheduler will perform all tasks sequentially. When you add a scheduled task to the scheduler, the task should perform its work as fast as possible, so no other tasks will have to wait.
If you have a task that needs to run every minute and its runtime is close to a minute, you should not use a simple Artisan command, as this will result in the delay of all other minute-ly tasks.
Long-running tasks should be performed by jobs that perform their work on the queue. Laravel has the ability to schedule queued jobs. This way, those tasks will not block the scheduler.
$schedule->job(new ProcessPodcast)->everyFiveMinutes();
The downside of this approach is that you cannot run that job via Artisan anymore. You have to choose between using an artisan command + blocking the scheduler on the one hand, and job + not blocking the scheduler on the other hand.
Using our package, you don't have to make that choice anymore. When letting your job implement SpatieArtisanDispatchableJobsArtisanDispatchable
, you will not block the scheduler and can still execute the logic via Artisan.
All you need to do is let your job implement the empty ArtisanDispatchable
interface.
use SpatieArtisanDispatchableJobsArtisanDispatchable;
class ProcessPodcast implements ArtisanDispatchable
{
public function handle()
{
// perform some work...
}
}
This allows the job to be executed via Artisan using the kebab-case version of the base class name.
php artisan process-podcast
This job will not be queued but will be immediately executed inside the executed artisan command.
If you want to put your job on the queue instead of executing it immediately, add the queued
option.
php artisan process-podcast --queued
If your job has constructor arguments, you can still use the package. Constructor arguments can be passed as options to the artisan command. If a constructor argument is an Eloquent model, you may pass the model's id to the artisan command option.
Here's an example:
use App<span class="hljs-title">Models<span class="hljs-title">Podcast;
use Spatie<span class="hljs-title">ArtisanDispatchable<span class="hljs-title">Jobs<span class="hljs-title">ArtisanDispatchable;
class ProcessPodcast implements ArtisanDispatchable
{
public function __construct(
Podcast $podcast,
) {}
<span class="hljs-keyword">public</span> <span class="hljs-function"><span class="hljs-keyword">function</span> <span class="hljs-title">handle</span><span class="hljs-params">()</span>
</span>{
<span class="hljs-comment">// perform some work...</span>
}
}
Here's how you can execute this job with podcast id 1234
php artisan process-podcast --podcast=1234
This package has a few other whistles and bells, which are explained in the package's readme on GitHub.
This isn't the first package our team has created. Check our website for an extensive list of things we released previously.
If you want to support our open source work, consider picking up one of our premium products and courses.
(more…)