Live data from Hacker News

What data format for object (like JSON) supports in place update?

news.ycombinator.com

1–3 of 3 posts

Re: What data format for object (like JSON) supports in place update?

#3
post #2

Some data stores (Mongo, CouchDB) do support in-place updating of JSON objects

Yes, but they are not efficient: When updating one small field, like string, which is larger than the original one, the whole document must be resized too, to have enough space for the updated field. This is inconvenient.