作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Laravel PHP Framework 中,假设两个表之间存在关系,例如一个帖子可以有一个或多个评论,您可以通过以下方式创建帖子的评论:
// Option 1
$post->comments()->create(['text' => 'Greate article...']);
或
// Option 2
Comment::create([
'post_id' => 1,
'text' => 'Greate article...',
]);
当然,这要视情况而定。以下是我的案例。
在上述这些情况下,选项 1
是否比选项 2
更昂贵?
最佳答案
您可以通过 listening to the queries 测试您的应用程序进行的查询使用 DB::listen()
。
我已将以下内容设置为测试:
迁移:
Schema::create('posts', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('title');
$table->string('content');
$table->timestamps();
});
Schema::create('comments', function (Blueprint $table) {
$table->bigIncrements('id');
$table->unsignedBigInteger('post_id');
$table->string('text');
$table->timestamps();
});
模型:
class Post extends Model
{
protected $guarded = [];
public function comments()
{
return $this->hasMany(Comment::class);
}
}
class Comment extends Model
{
protected $guarded = [];
public function post()
{
return $this->belongsTo(Post::class);
}
}
测试:
$post = Post::create([
'title' => 'Hello World',
'content' => 'Here I am!',
]);
$queries = collect();
DB::listen(function ($query) use ($queries) {
$queries->push($query->time);
});
for ($i = 1; $i <= 3000; $i += 1) {
Comment::create([
'post_id' => $post->id,
'text' => 'Facade '.$i,
]);
$post->comments()->create([
'text' => 'Relation '.$i,
]);
}
$totalTime = [0, 0];
foreach ($queries as $idx => $time) {
$totalTime[$idx%2] += $time;
}
return [
'facade' => $totalTime[0],
'relation' => $totalTime[1],
];
这个输出:
array:2 [▼
"facade" => 1861.3
"relation" => 1919.9
]
所以你可以看到 create
的关系方式在我的测试场景中实际上慢了大约 3%。
我准备了这个implode如果您想进一步试验。
关于php - $post->comments()->create() 是否比 Laravel 中的 Comment::create() 更昂贵?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63390404/
我正在阅读 MongoDB,并试图了解它的最佳用途。我没有看到明确答案的一个问题是哪些操作便宜或昂贵,以及在什么条件下。 你能帮忙澄清一下吗? 谢谢。 最佳答案 人们经常声称 mongodb 的写入速
我正在寻找一个主要来源(或一个非常好的解释)来支持在为 iPhone 编写软件时使用 autorelease 是危险的或过于昂贵的说法。 许多开发者都提出了这种说法,我什至听说 Apple 不推荐它,
我意识到这离微优化领域太远了,但我很想知道为什么调用 DateTime.Now 和 DateTime.UtcNow 如此“昂贵”。我有一个示例程序,它运行几个场景来做一些“工作”(添加到一个计数器)并
我是一名优秀的程序员,十分优秀!