Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
关于使用 java 在 bigtable 上进行/优化全文搜索的任何见解?最佳实践之类的?你们是怎么做的?
基本思想是从文本中构建一个索引作为列表属性(词干并删除停用词)。为了提高性能,通过将列表属性移动到子实体中来使用“关系索引”。这可以防止将潜在的大列表作为默认提取组的一部分加载 - 您只需要查询。您必须使用低级 api 进行仅键查询,该查询将返回父类的键,然后可用于获取匹配项。