hey guys i wanted to know the best way to get this thing done:
i have a huge table with +40k records (tv show titles) in sqlite and i want to do real time lookups to this table. for eg if user searches for a show, as and when user enters search terms i read sqlite and filter records after every keystroke (like google search suggestion)
my performance benchmark is 100 milliseconds. few things i have thought of are: creating indexes, splitting the data into multiple tables.
however i would really appreciate any suggestions to achieve this in the fastest possible time so i can avoid any ui refresh delays - it would be awesome to have feedback from coders who have already done something similar
thanks in advance