I need to store big amounts of nested strings and access all the data using some simple format (for example, 'my.data.object.path').
For example, if I've got the following structure:
- object1
- object2
-- nested1
-- nested2
--- nestednested1
I need to check, for example, if object2.nested2.nestednested1 exists. Sometimes I also have to check whether object2.nested2 and object2 also exist.
Is it efficient to use nested NSMutableDictionary objects, or should I write some more efficient data storage model from scratch? Maybe there are ready-to-use 3rd-party solutions to this problem that you could suggest.
I was also thinking about storing all my.variable.path paths in a single NSMutableDictionary, so I can set variables simply doing [storage setObject:object forKey:@"my.variable.path"] and extract them by defining a custom method that split incoming path by dot and try to find the shortest chunk of path.