Hello,We're working on a mobile app with offline mode, and got a few
questions to cover in order to design the best solution.1. When we
enabled offline caching for DataService with approach including setting
DataService.cacheID peroperty, it worked, but it was way too slow. It
seems that saving cached data into local SQLite DB is too slow on iPad.
Example: online data (no caching): 1000 objects loaded in 2 secs
(incuding DB call and ADEP processing); offline data (w/ caching): 1000
objects loade...