If two processes modify the same entity concurrently, but only modify different properties, can they potentially overwrite the changes made by the other process when calling DatastoreService.put?
Process A:
theSameEntity.setProperty ("foo", "abc");
DatastoreService.put (theSameEntity);
Process B:
theSameEntity.setProperty ("bar", 123);
DatastoreService.put (theSameEntity);