I am posting some large data onto couchbase:
Two scenarios:
1) The data string is very large and the document does not get saved.
{
"abc": "data"
}
2) Now if I divide the large data string into multiple parts it gets posted.
{
"abc0": "data1",
"abc1": "data2"
}
Is there a flag I can change or some settings to enable the first scenario?