DEV Community

Dimitrios Desyllas
Dimitrios Desyllas

Posted on

2

Do laravel crons can use the same database connection if executed at the same time on laravel 5.8?

Can somebody help me with this?

Ι have setup 2 laravel cronjobs that both run run queries to the database:

$schedule->command(MyCommand::class,['param', '1'])->daily('1:30')
$schedule->command(MyCommand::class,['param', '2'])->daily('1:30');

And the command is the following:

use Illuminate\Console\Command;

class MyCommand extends Command
{
   $signature = "my:command --param {param}"

   public function run()
   {
      $sql = DB::select(^some_heavy_query^);
      // Do other stuff
   }
}

Both…

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more