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)