You also need to increase the buffer size on the server side:
If you are using XML configuration, add the following:
<advancedProperties> <transportProperties maxBufferSize="8388608" /> </advancedProperties>
If you are using SQL configuration, you need to export it to a file:
Export-CacheClusterConfig -File [yourfilepath]
Modify the file above and import it again:
Stop-CacheCluster Import-CacheClusterConfig -File [yourfilepath] Start-CacheCluster
However, it is not recommended that you store large files in AppFabric Cache.
Manuel
source share