我正在尝试将大约 60MB 的对象放入单个缓存项中,但是我经常遇到以下错误
ErrorCode<ERRCA0016>:SubStatus<ES0001>:The connection was terminated, possibly due to server or network problems or serialized Object size is greater than MaxBufferSize on server. Result of the request is unknown.. Additional Information : The client was trying to communicate with the server: net.tcp://127.255.0.0:20004/.
起初错误指示特定大小,很明显客户端无法发送如此大的消息,因此我使用以下方法增加了客户端中的 MaxBufferSize
<transportProperties maxBufferSize="999999999"/>
谷歌搜索和 SO 搜索提供了有关缓存角色配置的有限资源(大多数结果提示更改 web 角色的 web.config 或类似内容)甚至 Microsoft 的文档也是有限的。
是否有可能,如果可以,如何增加缓存角色可以缓存的消息的最大大小?