Why is sqlite so much slower in iOS 5 that previous versions? There have been several posts with this as the core issue, and the solutions revolve around either optimizing your sqlite db or query, or switching to something else. None, however, have addressed the reason why the same sqlite database is 5-10X slower on iOS 5 for the same query.
This also appears to slow down core data applications that use sqlite as a backing store.
In my case, the same application running on iOS 4.0 on an iPhone 3GS is markedly faster than the same application running on an iPhone 4S with iOS 5.
edit: I tried some performance modifications as listed in the following post, but nothing resulted in a significant performance change. Improve INSERT-per-second performance of SQLite?