ABCpdf 可以产生 10 个工作进程来生成 PDF。这可以通过设置“HtmlProcessPoolSize”注册表项进行更改。我尝试将其设置为 16,但只产生了 10 个进程。
这个设置也应该可以通过配置设置进行配置,在我们的例子中我更感兴趣。它使我们可以通过应用程序进行更多控制。 ABCpdf:SetConfigSection
这是我的配置(或至少部分配置)。
<configSections>
<section name="ABCpdf9.Section" type="WebSupergoo.ABCpdf9.ConfigSection, ABCpdf" allowLocation="true" allowDefinition="Everywhere" allowExeDefinition="MachineToLocalUser" restartOnExternalChanges="true" requirePermission="true" />
</configSections>
<ABCpdf9.Section>
<Preferences>
<clear />
<add key="HtmlProcessPoolSize" value="16" />
</Preferences>
</ABCpdf9.Section>
但是仍然只有 10 个工作进程可用。
有人知道我错过了什么吗?