- Server Mode
- Work-station mode (default)
ASP.NET applications automatically start the CLR in the Server mode but if you have other applications like .NET Remoting (??), you might have to force the CLR to start-up in the server mode.
It can be specified in the Application Configuration file:
<configuration>
<runtime>
<gcserver enabled="true">
</runtime>
</configuration>
Reference: Steven Pratschner
I am still trying to find the performance benefits by specifying the start-up mode.
No comments:
Post a Comment