full-text-searchobjectbox

Does ObjectBox support FullTextSearch (fts)?


I am wondering does ObjectBox support FullTextSearch (fts) for none-english, e.g Japanese, Korean, Chinese , languages?

If it does support, any suggestions as to how to do this in AndroidStudio?

Thank you


Solution

  • There is QueryBuilder.contains(docs) to search for text inside property values. There is no FTS indexing though at this time.

    PS.: ObjectBox 4 now comes with vector search; e.g. you could implement an semantic search using vector embeddings, but that's still rather advanced and requires some effort.