Search code examples
c#couchbasemembaseenyim

How can I change default Couchbase item size?


I am using the .NET Couchbase Client API that includes Enyim.Caching. I have a DataTable that is approximately 55 megs and it is not getting cached. I understand that there is a "soft" max for the item size of 20 megs.

How can I change the default max item size in order to cache this object?


Solution

  • Per MikeW from the Couchbase forum post here:

    This requires modifying a constant in the source code and building Couchbase yourself.

    It seems as if there isn't a way around it. Thanks for the help.