I am trying to update a complex object via a path value which it appear ReJson can do. I have used it as a Cache just fine, I want to use it as a json collection store for real time data (similar to mongodb).
for example: { "name": "Michael \u0027Mike D\u0027 Diamond", "employeeID": "E#101", "role": "Cleaner", "location": { "longitude": -2.552079, "lattitude": 51.501335 }, "numberOfAssignedJobs": 5 }
For example I want to update location.lattitude without taking the whole object and dealing with read/write sync issues.
However I am struggling with the API/How it is used in kubernetes. If anyone has any example code or tips and tricks, anything is much appreciated.
Thanks, Matt