So, I have a database that is 80MB uncompressed. I've gz'd it to 30MB, but it now requires a 25 second "unpack" time when the application first launches. I've written this code in C, making it as fast as possible (no NS* types, minimal code to complete the read from the gz to the write of the new .db).
Here's a bit of data on the sizes of a buffer I've used and the timing:
define CHUNK 16384
2009-04-29 00:13:30.150[365:20b] Processing gzipped data... 2009-04-29 00:13:58.215[365:20b] Finished. Removing .gz
define CHUNK 10485761
HA, NOPE. Cant allocate that much on the stack I guess
define CHUNK 262144
2009-04-29 00:23:18.679[426:20b] Processing gzipped data... 2009-04-29 00:23:47.010[426:20b] Finished. Removing .gz
So my question is, would you rather have a 80MB download and install to the iphone and no wait on startup, or a 30MB download and install with a 25second installs process on the FIRST boot only?
Also, if you are ok w/the 25s install, what indicators would you expect? A throbber, progress bar, splash screen w/explanation...?
Thanks, can't wait to get your input!
- sk
NOTE: I know I can pull data from the network, that's not the point. This is a offline app that needs to work 100% so I have to have the data. I like having it in SQL because its manageable. I don't want 30,000+ txt files.
