Android Full Text Search

后端 未结 3 1349
遇见更好的自我
遇见更好的自我 2020-12-10 06:02

Does Android come with a way to do Full Text Search?

I know is it not even possible to search contacts by the notes field, being Google the search company, but I wou

相关标签:
3条回答
  • 2020-12-10 06:46

    SQLite Database With Android's Room Library

    Android's Room library provides full-text search using SQLite.

    See: Support full-text search

    Firebase Firestore Database

    Google's Firebase Firestore outlines a full-text search solution using a 3rd party service, Algolia. Other 3rd party services can be used like Elastic Search.

    0 讨论(0)
  • 2020-12-10 06:48

    The easiest way to provide Full Text Search is to use FTS3 in SQLite

    0 讨论(0)
  • 2020-12-10 07:04

    Lucene is another approach, that is faster than SQLite FTS

    0 讨论(0)
提交回复
热议问题