azure - Increasing the MaxBufferSize of a caching role -


i'm trying put object ~60mb single cache item greeted following error

errorcode<errca0016>:substatus<es0001>:the connection terminated, possibly due server or network problems or serialized object size greater maxbuffersize on server. result of request unknown.. additional information : client trying communicate server: net.tcp://127.255.0.0:20004/.

at first error indicated specific size , clear client couldn't send such large message increased maxbuffersize in client using folliwing

<transportproperties maxbuffersize="999999999"/>

googling , searches provided limit resources regarding configuration of cache role (most results prompted change of web.config of web role or similar) microsoft's documentation limited.

is possible, , if how, increase maximum size of message cache role can cache?

the maximum size of single object can cached 8 mb, after being serialized. there no way cache library put greater sized object cache.

what can try , instead split object in client multiple (in case 6) objects, messy.

if can not live 8 mb restriction, should put in feature request here.


Comments