4.4.1
[ENHANCEMENT] Improve JSON deserialize performance for large strings #7
Add the following key to the Web.config and set the value of API_MEMCACHED_MAX_SIZE to the pre-set limit during the Server Side installation process (usually 128)
<!-- MemCacheD - Set the max size in MB before splitting a string record in sub-cache entries --> <add key="API_MEMCACHED_MAX_SIZE" value="128" />
[ENHANCEMENT] Allow large objects over 2GB in memory #6
Diff & Merge the
Web.configto add the required Runtime configuration<runtime> <gcAllowVeryLargeObjects enabled="true" /> </runtime>
[ENHANCEMENT] Add database selection for Performance monitor #5
Add the following key to the Web.config and set the value of API_PERFORMANCE_DATABASE to the chosen connectionString
<!-- Performance - Choose the Database connection string where to store the records --> <add key="API_PERFORMANCE_DATABASE" value="defaultConnection" />