my current ios project has a simple datamodel consisting of node and edge entities related to each other. the user can choose a dataset from a library listed in a tableview or can make his own by adding nodes and edges manually.

any dataset consists of 1k to 20k node informations (longitude-latitude pair) and there are up to 35 different datasets to choose from + manually created sets from the user which only have up to 100 nodes. for each dataset there are n*(n+1)/2 edges where n := #(nodes)


for the next step i need your help to decide whether i'm using

1. one persistent store and add

  • a) an attribute "datasetName" to the managedobject node or
  • b) enlarge my model and create a new entity dataset with a to-many relationship to node

i think fetch requests in case b) are more efficient because all nodes from a named dataset are already "known" NSArray* nodesArray = [dataset valueForKey:@"nodes"]; where in option a) there is a maximum of 700k nodes and 35*210K edges where a filtering predicate is probably slow.

or

2. multiple stores:

so i am changing stores whenever the user makes a selection of a specific dataset or even create a new one if the user wants to create his own dataset, where any dataset has its own store, so i can insulate not just by managedobjectcontext like in (1.). there are just those nodes and edges available that are related to the dataset.


while writing this question it seems to me that 2) could be the right answer, but maybe i'm wrong, missed some points or there are even more oportunities? thanks for help.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.