Is there a limit to a single item (object) size in Azure Cache Preview? I know that Azure Shared Cache has that limitation (8MB serialized) but I can not find that kind of information for the new Cache.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
There are no changes in the object size. Its the same - 8MB serialized. Thanks! |
|||||
|
|
By default the caching imlementation uses 'standard' .Net Binary serialization. This is quite efficient, but I had great results using Protobuf serialization: http://nuget.org/packages/protobuf-net/2.0.0.580 Encoding / decoding performance is stellar and it greatly reduces serialized object size: http://code.google.com/p/protobuf-net/wiki/Performance So give it a try in case you hit the 8MB limit. |
|||
|
|