Как увеличить память, выделенную IIS приложение.NET?

Мы раньше использовали psexec с методом сценария пакетной обработки gWaldo предложенный. Недавно мы начали использовать PDQ, Развертываются для развертывания наших установщиков, и MSI и не-MSI, таких как Firefox. Это является довольно прямым и делает несколько клиентов сразу, которые не может сделать пакетный файл psexec метод.

Для помощи с ними, я обращаюсь к WPKG.org для корректных переключателей для использования для установки без диалогов

7
задан 2 October 2012 в 20:18
1 ответ

The CLR hosted in the application pool for the web application will grab as much memory as necessary and then based on memory demand, use garbage collection as needed to free up memory.

You can put limits on the amount of memory accessible to an application pool (in the UI, via the Advanced Settings dialog, or via PowerShell and the WebAdministration module).

You might want to check if there are caps already set for the memory on the application pool, but there really isn't a way to dedicate more memory directly to an app pool without editing the machine.config for the .NET version the app runs under.

EDIT: The default autoconfiguration for memory caps in IIS 7 is 60 percent of the machines RAM. This can be manually increased by editing the machine.config file for the .NET version that your application runs under. Details of the various configuration settings here.

7
ответ дан 2 December 2019 в 23:38

Теги

Похожие вопросы