Is there any performance difference between querying using object for Key on an NSDictionary vs. a Fetch Request on Core Data? is there any performance difference in storing them the same ways?
Please note, I’m only asking about performance, not about code design or organization.
Thanks!
An NSDictionary is stored entirely within RAM memory. Core Data could be stored in a SQLite database which could cause a bit of latency that you would not get from just an NSDictionary.