This topic has been archived. It cannot be replied.
-
工作学习 / 学科技术讨论 / 强悍的.Net并行处理技术,居然被微软做得如此简单,在多核CPU上利用.net并行技术大幅提升系统性能
-binghongcha76(一只大猫);
2009-2-26
{3312}
(#5077442@0)
-
Interesting ! But you have to explicitly use "Parallel.ForEach" in your code. I am wondering what about Java's multi-thread application....without any code change.
-nicetomeetyou(_);
2009-2-26
(#5077687@0)
-
keep away from dead tech
-youbet(寻常巷陌);
2009-2-26
(#5077746@0)
-
LINQ to SQL is only small part of LINQ. Although I don’t like LINQ to SQL either, I really like other parts of LINQ. BTW, PLINQ is not for LINQ to SQL.
-deep_blue(BLUE);
2009-2-26
(#5077827@0)
-
LINQ好像不支持其他数据库吧,除了MS SQLServer
-newcomer28(newcomer28);
2009-2-26
(#5078714@0)
-
As I mentioned, major part of LINQ is not database.The LINQ is using SQL like query (filter, join, sort, group, union, and so on) to target memory data objects, such as xml, collections, iterating/enumerable objects, and so forth.
Compare to SQL, using LINQ to query database doesn’t give you much benefit.
-deep_blue(BLUE);
2009-2-26
{261}
(#5078794@0)
-
In addition to use default mode, pipelined processing, you can also use stop-and-go processing or inverted enumeration. That makes processing even more optimum .
-deep_blue(BLUE);
2009-2-26
(#5077880@0)
-
Good to know. thanks for sharing!
-anthonylo2008(anthonylo);
2009-2-26
(#5079208@0)