Change maximum item size
I understand that the default maximum item size is 20 megs. I have an item that is roughly 55 megs that I'd like to store. How can I change the maximum item size?
I also posted this question to stackoverflow here:
http://stackoverflow.com/questions/8933666/how-can-i-change-default-couc...
I'm using the .NET Couchbase Client API. It just turned out that an object that size was already being stored via built in ASP.NET caching previously. There is no functionality currently implemented in the API to break up an object into multiple smaller pieces (and merge back together in the Get) and I'm attempting to simply swap the caching mechanisms in the code.
I'll build something to split and merge this and see if there are performance issues with doing so. Obviously I'd much prefer either to be easily able to reconfigure the max item size or have this split/merge functionality built into the Couchbase API.
I recently can across a stackoverflow question where someone was trying to something similar to what you are doing. Check out some of the answers and let me know if you have any other questions.
http://stackoverflow.com/questions/9127982/avoiding-memcache-1m-limit-of...
This requires modifying a constant in the source code and building Couchbase yourself. I'm curious why you need to store such a large object?