I have a huge JSON object (document) stored in couchbase .
eg.
{‘a’: 23,
‘b’: 73
‘c’: [[23,34], [23, 67]],
‘d’: {
‘abc’: 34,
}
}
I just want to update value for ‘c’ to something like: ‘c’: [[23,34], [23, 67], [89,56]].
How can I do this?
Do I need to load entire document to do such an operation?