2

我试图通过编辑 Microsoft.Crm.Tools.EmailAgent.xml 文件来加快 CRM 2011 中发送的电子邮件。我正在修改 SchedulingPeriod 元素,但我不确定间隔设置是以秒还是毫秒为单位。

Microsoft 的 CRM 4.0 文档指出“配置文件中的所有时间间隔都以毫秒为单位指定”。http://msdn.microsoft.com/en-us/library/cc906241.aspx

Microsoft Dynamics CRM 2011 Unleashed Book 指出“外发电子邮件是异步处理的,默认轮询安排为每 1,000 秒(约 15 分钟),因此您必须等待该时间才能真正发送电子邮件。” </p>

提示:要提高外发电子邮件的发送速度,您可以编辑配置文件 Microsoft.Crm.Tools.EmailAgent.xml(通常位于 C:\Program Files\Microsoft CRM Email\Service)并找到SchedulingPeriod 元素。我们建议将其默认值更改为 10 秒。

问题 1:在 CRM 2011 中,SchedulingPeriod 是以毫秒还是秒为单位指定的?

问题 2:在 CRM 2011 中,默认的 SchedulingPeriod (1,000) = 1 秒还是 15 分钟?

Microsoft Dynamics CRM 2011 Unleashed 书中提到通过将默认值更改为 10 秒来加速外发电子邮件。
问题 3:在 CRM 2011 中,将 SchedulingPeriod 更改为 (10) = 10 秒还是 10 毫秒?

4

1 回答 1

2

it is in seconds, 1000 seconds == 16 minutes 35 seconds, there should also be a setting for number of threads just above this in the file that you can increase to improve performance.

Like everything CRM though test it first as your setup might behave differently to mine, speeding this up might just move your bottleneck elsewhere - usually the UI if you havent put it on another server. also concider if you are using Virtual Servers and they are on the same physical hardware making one work more can slow the others if they aren't balenced correctly.

于 2012-05-12T00:32:27.993 回答