English 中文(简体)
亚洲开发银行在使用平行时将业务放慢。 a. 定期接种疫苗
原标题:DB insert operations are slower when using parallel.foreach than regular foreach

我有一项职能,即通过我的物体清单,对物体进行一些检查,并节省一个服务器库。

我所节省的物体数可达数千个,因此我决定使用平行框架,使之更快。 我同时使用。 倡导这样做。

这种循环正处在背景工作者的深处。

它运作良好,但我承认它比正常的幸运要慢。 例如,在我上次测试中,我的物体清单在2,41.35分钟内处理,经常旁听器在2,14.92年处理。 差不多是半分钟。

是否是亚行在并行框架内插入行动的共同行为? 它建议使用平行。 • 争取使亚洲开发银行加入业务?

Thx!

VS2010/Net4/c#

最佳回答

如果你有一个单一的数据库链接,试图同时节省物体,很可能只是增加客户(联系对象)的同步管理。 见,平行风.。 在不了解你的具体守则的情况下,我猜测,更好的办法是试图将检查<>/em>仅同时进行,然后按顺序将节减<>>(使用单一干线)。 当然,如果你的物体是伪装的,你需要确保它们能够在检查和储蓄之间发生改变,但这在目前的做法中依然如此。

BTW, 你们是否在一次交易中将所有这些物品全部用于 d,或者你是否只是自动承诺? 当然,这取决于对您的插入适用何种诚信限制,但即使有数以万计的人,似乎还有2-3分钟的时间。 如果你目前 t,明智地利用交易,就有可能使你的业绩大大提高。

www.un.org/Depts/DGACM/index_spanish.htm 添加: 在我的台式机上,我可以使用自动车库在5秒中安装100个1个外地行。 如果在一次交易中重新出现,我可以在13秒中插入10 000个一流。

问题回答

暂无回答




相关问题
what is wrong with this mysql code

$db_user="root"; $db_host="localhost"; $db_password="root"; $db_name = "fayer"; $conn = mysqli_connect($db_host,$db_user,$db_password,$db_name) or die ("couldn t connect to server"); // perform query ...

Users asking for denormalized database

I am in the early stages of developing a database-driven system and the largest part of the system revolves around an inheritance type of relationship. There is a parent entity with about 10 columns ...

Easiest way to deal with sample data in Java web apps?

I m writing a Java web app in my free time to learn more about development. I m using the Stripes framework and eventually intend to use hibernate and MySQL For the moment, whilst creating the pages ...

join across databases with nhibernate

I am trying to join two tables that reside in two different databases. Every time, I try to join I get the following error: An association from the table xxx refers to an unmapped class. If the ...

How can I know if such value exists in database? (ADO.NET)

For example, I have a table, and there is a column named Tags . I want to know if value programming exists in this column. How can I do this in ADO.NET? I did this: OleDbCommand cmd = new ...

Convert date to string upon saving a doctrine record

I m trying to migrate one of my PHP projects to Doctrine. I ve never used it before so there are a few things I don t understand. In my current code, I have a class similar to this: class ...