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:
Under WEB-INF\classes\config open the log4j.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 time of the application.
.NET
The following steps describe the settings that need to be checked and possibly changed, for optimal performance of the .NET Determinations Server:
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.
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.