Add data in bulk using JSON
The idea is to allow the client to insert data in bulk by specifying a json string that should be inserted into a record.
NOTE: This needs to be done as an atomic operation!
- insert(string json, long record)
- Questions
- What if i the json document has a key/value mapping that already exists in the record? Should this fail? Or should I clear first and overwrite?
- Questions