Skip navigation.
 
mlRe: Large Data Sets
FROM : Shawn Erickson
DATE : Sat Jul 01 17:19:10 2006

On Jun 30, 2006, at 1:41 PM, Jerrod Fowkes wrote:

> I dont think that NSDictionary will serialize down with other 
> dictionary objects in it.


What do you mean by the above sentence? If you have an NSDictionary 
of NSDictionary instances with those containing objects that support 
NSCoding (foundation provided or your own) then you can serialize the 
whole object graph.

Review...

<http://developer.apple.com/documentation/Cocoa/Conceptual/Archiving/
index.html
>

> I am thinking that maybe NSXMLParser maybe a better solution for this.


To me it sounds like Core Data would be the best using either Binary 
or SQLite store types (the later allows partial loads of your object 
graph... which could help you if do get a very large set of entries 
you have to "manage").

Start here...

<http://developer.apple.com/macosx/coredata.html>

-Shawn

Related mailsAuthorDate
mlLarge Data Sets Jerrod Fowkes Jun 30, 22:41
mlRe: Large Data Sets Shawn Erickson Jul 1, 17:19