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
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.