Fulltext search on bigtable

any understanding of how to create / optimize full-text searches on bigtable using java? best practices and the like? how do guys do it?

+3
source share
1 answer

The main idea is to create an index as a property of the list from the text (exclude and remove stop words). To improve performance, use “relationship indexing” by moving the list property to a child. This prevents the loading of a potentially large list as part of the default fetch group - you only need to request a query. You will need to use low-level api to execute only key requests. Taht will return the keys of the parent class, which can then be used to get the corresponding elements.

+6
source

Source: https://habr.com/ru/post/1760666/


All Articles