When you install SharePoint Server 2013 the Distributed Cache service is configured to use 10% of the RAM on the server. Half of the 10% is used for caching and the other half is used for memory management. If you add RAM to the server you need to manually re-configure the Distributed Cache service to make use of the extra RAM.
To check the current RAM allocation run the command below from an elevated SharePoint 2013 Management Shell, replacing the server name as necessary.
Use-CacheCluster
Get-AFCacheHostConfiguration -ComputerName ServerName -CachePort “22233”

Calculate the new Distributed Cache service cache size for a 24 GB SharePoint Server as follows:
10% of 24 GB = 2.4 GB
Divide 2.4 GB by 2 = 1.2 GB
Convert 1.2 GB to MB = 1229 MB
Stop the Distributed Cache service on each host using Central Administration -> System Settings -> Manage services on server.
Run the command below from an elevated SharePoint 2013 Management Shell on one host at a time, replacing the cache size as necessary.
Update-SPDistributedCacheSize -CacheSizeInMB CacheSize
Start the Distributed Cache service on each host using Central Administration -> System Settings -> Manage services on server.
Like this:
Like Loading...