any insight as to making/optimizing full-text searches on bigtable using java? best practices and such? how do u guys do it?
any insight as to making/optimizing full-text searches on bigtable using java? best practices and
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Basic idea is to build an index as a list property from the text (stemmed and with stop words removed). To improve performance use “relation indexing” by moving the list property into a child entity. This prevents a potentially large list from being loaded as part of the default fetch group – you only need to query against. You’ll have to use the low level api to do a keys only query taht will return the keys of the parent class which can then be used to fetch teh matching items.