Reputation: 53
I am not able to create a document of size greater than 2.5 kb in the Couchbase WebUI. Can we remove the size limit? Thanks in advance.
Upvotes: 1
Views: 353
Reputation: 7162
Yes we can remove the document length as well- you have to edit documents.js file and path of this file is -
C:\Program Files\Couchbase\Server\lib\ns_server\priv\public\js\documents.js
on this function isJsonOverLimited(json) you have to false the length limit. like-
function isJsonOverLimited(json) {
//return getStringBytes(json) > self.docBytesLimit;
return false;
}
Thanks,hope this help...
Upvotes: 3