Updates from: 07/26/2022 01:15:09
Service Microsoft Docs article Related commit history on GitHub Change details
SharePoint Manage The Distributed Cache Service https://github.com/MicrosoftDocs/OfficeDocs-SharePoint/commits/public/SharePoint/SharePointServer/administration/manage-the-distributed-cache-service.md
The Distributed Cache service setting for **MaxConnectionsToServer** is often tu
Set-SPDistributedCacheClientSetting -ContainerType DistributedUnifiedAppsCache $DUAC #DistributedUnifiedAuditCache
- $DHSC = Get-SPDistributedCacheClientSetting -ContainerType DistributedUnifiedAuditCache
- $DHSC.MaxConnectionsToServer = 1
- $DHSC.requestTimeout = "3000"
- $DHSC.channelOpenTimeOut = "3000"
- Set-SPDistributedCacheClientSetting -ContainerType DistributedUnifiedAuditCache $DHSC
+ $DUAuC = Get-SPDistributedCacheClientSetting -ContainerType DistributedUnifiedAuditCache
+ $DUAuC.MaxConnectionsToServer = 1
+ $DUAuC.requestTimeout = "3000"
+ $DUAuC.channelOpenTimeOut = "3000"
+ Set-SPDistributedCacheClientSetting -ContainerType DistributedUnifiedAuditCache $DUAuC
``` **SharePoint Server 2016 PowerShell script**