Tune the performance of Determinations Server

Tune the performance of Determinations Server

Before deploying Determinations Server to your application server, there are some settings that should be checked to make sure they are set to the correct value for the best performance.

Java

The following assumes that if the Java version of Determinations Server is being used, the application has been unpacked prior to making any configuration changes:

.NET

The following steps describe the settings that need to be checked and possibly changed, for optimal performance of the .NET Determinations Server:

  1. Under the root Determinations Server folder, open the Web.config file and make sure that compilation debug is set to false; for example:

    <compilation debug=”false”></compilation>

    This will ensure that extra debugging symbols are not inserted into any of the compiled pages, significantly increasing the performance of the Determinations Server.

  2. Under bin\config, open the log4net.xml file and make sure that level value is set at the very least to warn (the default value); for example:

    <level value=”warn” />

    This will ensure that logging is not set to debug, which slows the overall response times of the application.