I don't get the point of having multiple Managed Object Contexts. Does that make any sense? The Apple documentation lacks of useful examples for these cases.
|
Just one quick example : If you get data from the web. You'd need a 2nd context to insert the new objects and check if the data exists in your main context before merging data and save only your main context. |
|||
|
|
|
The most important use (IMHO) is threading; if you're using multiple threads, each thread should have its own managed object context. |
|||
|
|
Santoni's answer is the primary reason. You can also have multiple unrelated models (MOMs). In that case you would have context for each model. |
|||
|
|
|
Just to throw another possible use case on the pile: |
|||
|
|