You can control the host's memory usage on the server through the following settings. It can also set up timed reconstruction of the host process (similar to the timed restart in AppPool in IIS6), which can prevent the server from running aspnet for a long time to occupy a lot of free memory, which is conducive to improving the operation efficiency of aspnet.
The host configuration file location is
C:\WINDOWS\\Framework\v1.1.4322\CONFIG\
Open the file with a text editor, find the content and modify it by comment.
processModel
enable="true"
timeout="01:00:00" Timeout time, specify how long to rebuild the aspnet process. It is recommended to set it to several hours, format "hours: minutes: seconds"
idleTimeout="00:20:00" How long does it take for aspnet to close the process without action? It is recommended to spend dozens of minutes
...
memoryLimit="40" ---aspnet takes up the maximum number of server memory, default is 40%
...
I will introduce you to the host-related settings here, I hope it will be helpful to you.
The host configuration file location is
C:\WINDOWS\\Framework\v1.1.4322\CONFIG\
Open the file with a text editor, find the content and modify it by comment.
processModel
enable="true"
timeout="01:00:00" Timeout time, specify how long to rebuild the aspnet process. It is recommended to set it to several hours, format "hours: minutes: seconds"
idleTimeout="00:20:00" How long does it take for aspnet to close the process without action? It is recommended to spend dozens of minutes
...
memoryLimit="40" ---aspnet takes up the maximum number of server memory, default is 40%
...
I will introduce you to the host-related settings here, I hope it will be helpful to you.