Skip to content

4.4.1

Choose a tag to compare

@lorenzobruni lorenzobruni released this 19 Apr 17:14
· 51 commits to master since this release

[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.config to 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" />