Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有人有 Eloquent ORM、Query Builder 和 Raw SQL Queries 之间速度比较的数据?什么是更好的选择?
原始 SQL 总是最快的,因为人们总是可以根据自己的喜好优化代码和脚本。查询构建器(又名 Fluent)将是第二快的,仅比 Eloquent 慢一点。这是因为 Eloquent 在其自身内部使用了 Fluent 以及它自己的模型和关系。
如果您正在寻找纯粹的处理速度,请使用原始 SQL。
否则使用 Eloquent 进行最快的开发,除非你没有模型和关系,然后使用 Fluent。