Possible Duplicate:
Android Full Text Search
I am writing a database centered around blobs of text (one per row). On my server-side app, I should be fine using Lucene/Solr to do efficient Google-style search on that field in all a user's documents. How do I implement this offline in Android? Does it make sense to run Lucene on end-user devices?
(Data is probably going to be stored in SQLite on the phones.)