为什么 var.First() 会导致性能问题?
我使用 .NET 4.0 c#。 我今天才意识到性能问题部分是由这个引起的:
var feuilleDeTemps =
from fdt in context.FeuilleDeTemps.Include("FeuilleDeTempsJournees");
...
feuilleDeTemps.First().Property
feuilleDeTemps.First().Property
feuilleDeTemps.First().Property
feuilleDeTemps.First().Property
...
FeuilleDeTemps myFT = feuilleDeTemps.First();
return myFT;
我在将它设置为像这样的普通变量之前使用了 feuilleDeTemps 的第一个元素(大约每个循环 4 次 x 60 循环):
FeuilleDeTemps myFT = feuilleDeTemps.First();
然后我意识到它导致了性能问题。我用这个代替:
var feuilleDeTemps =
from fdt in context.FeuilleDeTemps.Include("FeuilleDeTempsJournees");
FeuilleDeTemps myFT = feuilleDeTemps.First();
...
myFT.Property
myFT.Property
myFT.Property
myFT.Property
...
return myFT;
我使用了 feuilleDeTemps.First().Property 大约 240 次。 现在我使用了它 60 次,而该属性的 240 次使用直接由类型化变量决定。 它使我的代码执行时间减少了 2 倍(3 秒 vs 6 秒,但仍然很慢)...
为什么?
Im using .NET 4.0 c#.
I just realised today that a performance issue was partially caused by this :
var feuilleDeTemps =
from fdt in context.FeuilleDeTemps.Include("FeuilleDeTempsJournees");
...
feuilleDeTemps.First().Property
feuilleDeTemps.First().Property
feuilleDeTemps.First().Property
feuilleDeTemps.First().Property
...
FeuilleDeTemps myFT = feuilleDeTemps.First();
return myFT;
I was using the first element of feuilleDeTemps (about 4 times per loop x 60 loops) before setting it in a normal variable like this :
FeuilleDeTemps myFT = feuilleDeTemps.First();
Then i realised it was causing a performance issue. I used this instead :
var feuilleDeTemps =
from fdt in context.FeuilleDeTemps.Include("FeuilleDeTempsJournees");
FeuilleDeTemps myFT = feuilleDeTemps.First();
...
myFT.Property
myFT.Property
myFT.Property
myFT.Property
...
return myFT;
I was using feuilleDeTemps.First().Property about 240 times.
Now im using it 60 times and the 240 uses of the property goes directly by the Typed Variable.
It made my code take 2x less time to execute (3 seconds vs 6 seconds which is still pretty slow)...
Why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您请求值之前,您存储在
feuilleDeTemps
中的查询实际上不会执行。在您的情况下,当您调用First
时会发生这种情况。生成查询对象通常非常快。查询的执行通常花费最多的时间。在您的示例中,您多次执行相同的查询,从而导致多次往返数据库。使用 LINQ 时,请务必记住查询与该查询的结果之间存在差异。一般来说,查询是延迟执行的 - 在您实际请求之前不会获取数据,例如使用
First
、ToList
、foreach (var result in query)等...
The query you stored in
feuilleDeTemps
isn't actually executed until you request a value. In your case this happens when you callFirst
. Generating the query object is usually very fast. It is the execution of the query that usually takes the most time. In your example you are executing the same query multiple times, resulting in several round-trips to the database.It's important when using LINQ to remember that there is a difference between a query, and the results of that query. In general queries are executed lazily - no data is fetched until you actually ask for it, e.g. with
First
,ToList
,foreach (var result in query)
, etc...您在第一个代码上四次接触数据库。
第二个,接触数据库一次,该行之后数据就可用。
这就是实体框架的运作方式,伙计:D
You are touching the database four times on the first code.
The second one, touches the database once and the data is available after that line.
That's how Entity Framwork roll, man :D