My English skill is not good. So please try to understand what I say. Thank you !
I want to create a Android dictionary app but I'm not experienced on it. I did a research and there are 2 choices for creating database: Lucene and SQLite Full Text Search. So I made an app as some tutorials.I find that FTS use a Virtual Table to store database but the probblem is the app freeze when adding data to Virtual Table at the first time (from text file about 10000 line). The searching function also takes long time (about 10 seconds)
Then, I find some others tutorials about Lucene. Lucene create an indexed directory for searching but I do not know how fast it is (with large data). Anyone could give me some advices on my problem?