我不确定这是否可能,但到底是什么 :) 我有两个 URL,都试图将不同的数据插入同一个表中。例子
我们有表“食物”和两个 URL,其功能可以将一些值插入到 FOOD 表中
http://example.com/insert_food_1 http://example.com/insert_food_2
当同时加载两个 URL 时,它们中的每一个都等待另一个先完成,然后将特定值插入数据库。
我知道这被称为多线程或其他东西......但我不确定这是否可以用 PHP(或 Laravel)来完成。
任何帮助将非常感激。我的代码看起来像这样......
$postToInsert = Post::create(
array(
'service_id' => 1,
'custom_id' => $post->body->items[0]->id,
'url' => $post->body->items[0]->share_url,
'title' => $post->body->items[0]->title,
'title_tags' => $tags,
'media_type' => $mediaType,
'image_url' => $imageURL,
'video_url' => $videoURL
));
$postToInsert->save();