Currently if you have multiple processes using conf with the same storage location they can, and do, clobber each other's data.
e.g.
- p1 reads store
- p2 reads store
- p1 writes store
- p2 writes store (this clobbers p1's changes in step 3, even if the change was a totally different key)
Any suggestions on how to work around this?
I feel like this could warrant a big disclaimer in the readme.
Currently if you have multiple processes using
confwith the same storage location they can, and do, clobber each other's data.e.g.
Any suggestions on how to work around this?
I feel like this could warrant a big disclaimer in the readme.