Hi,
Is it possible to store multiple maps (potentially with the same keys) in the same Key Value Store using PutMapAsync?
The answer seems to be no and the following seem to be the case:
- Keys in the maps which will be 'Put' have to be strings
- Keys in multiple maps have to be unique, i.e. a key of "1" can't be used in more than one of the maps to be 'Put' otherwise one will overwrite the other.
- Keys in maps can't be the same as those for other entries in the KVS, i.e. KVS.Put("1", "One") will be overwritten by a map which contains "1" in it's keys
Am I right in these assumptions and if so is there an simple way to store maps using the same keys?
Thanks
Is it possible to store multiple maps (potentially with the same keys) in the same Key Value Store using PutMapAsync?
The answer seems to be no and the following seem to be the case:
- Keys in the maps which will be 'Put' have to be strings
- Keys in multiple maps have to be unique, i.e. a key of "1" can't be used in more than one of the maps to be 'Put' otherwise one will overwrite the other.
- Keys in maps can't be the same as those for other entries in the KVS, i.e. KVS.Put("1", "One") will be overwritten by a map which contains "1" in it's keys
Am I right in these assumptions and if so is there an simple way to store maps using the same keys?
Thanks