I have following scenario
- I have Sqlite file of 4GB of data to support offline.
- Can I copy to the app and distribute the app, does it affect application performance.
- I need to read data from the same sqlite file, can I use the native
sqlite commands to read from 4GB of sqlite file or can I run a
server like
GCDWebServer
to read data from sqlite file. Which approach gives better performance.