コントローラーから更新用のメソッドを呼び出した後にバッチ処理を行いたい場合、どうしたらいいですか?
public function update(Request $request): JsonResponse { //更新処理 $this->updateRecords(request); //batch呼び出し exec("php artisan sampleBatch> /dev/null &"); return response()->json($response, 200, [], JSON_UNESCAPED_UNICODE); }
非同期で行いたいです。
exec("php artisan sampleBatch> /dev/null &");
では上手く動きませんでした
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/14 05:24
2020/05/14 05:24