I'm trying to put an object which is ~60MB into a single cache item however I am constantly greeted with the following error
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/.
At first the error indicated a specific size and it was clear that the client couldn't send such a large message so I increased the MaxBufferSize in the client using the folliwing
<transportProperties maxBufferSize="999999999"/>
Googling and SO searches provided limit resources regarding configuration of the Cache Role (most results prompted the change of the web.config of the web role or similar) Even Microsoft's documentation is limited.
Is it possible, and if so how, to increase the maximum size of a message that a cache role can cache?