|
2 |
edited tags
|
||
|
1 |
|
||
Core Data store atomicity with multiple storesCore Data allows you to add multiple persistent stores to a single Let's say I have two stores:
And then it's time to save I do that:
The documentation states that the sequence of events will be:
What if store A saves correctly, but store B cannot save for some reason? (e.g. the file on disk was deleted, or permissions made it read-only, that sort of thing). I cannot find any documentation detailing whether or not Core Data will then rollback the changes to store A. It seems odd to me that the object graph would be left in an inconsistent state (i.e. one store updated, one not), but somewhat tricky and resource intensive to perform fully atomic saving across multiple stores. Would just really like some clarification here, perhaps from someone with more experience of the system!
|
||||
