Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • I was seriously considering storing the XML file straight from the server (and probably will)... it just seemed like deserializing objects whenever the data is needed "should" be faster than reparsing an XML file. Commented Jan 7, 2010 at 22:09
  • Object serialization works because it's very generic, and generic code can run very slowly. Also, storage is a lot larger; I think I decreased file sizes from 10+ kilobytes with serialization to under a kilobyte (that does count gzipping my JSON). Commented Jan 7, 2010 at 22:55