I have a huge table that has 3 columns and about 333,000 rows. The sql dump is about 58 MB, and the sqlite database containing this table is about 20 MB.
I want to implement a kind of "auto-complete" when the user enters UISearchBarand UITableView. I work where every time a user enters a letter, he creates an HTTP request, but there is a very noticeable lag between the way a user enters a letter and the UITableView is updated. I thought that storing a database locally would speed things up, but this is a very large database .
Is it possible to store such a large number of databases on the device? Would using Core Data be a better option?
source
share