作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 geoBoundingBowFilter 发出地理定位请求。这是完美的工作。我的地理位置与其他对象有父子关系。我想让这个对象有我的 geoFilter 而不是地理定位的响应。我正在尝试使用 hasChildFilter,但我的响应命中率始终为零。
这是我正在使用的代码:
SearchResponse response = client.prepareSearch(index)
.setTypes(type)
.setSearchType(SearchType.QUERY_THEN_FETCH)
.setQuery(QueryBuilders.matchAllQuery())
.setPostFilter(FilterBuilders.hasChildFilter("location", FilterBuilders.geoBoundingBoxFilter("point")
.topLeft(topLeftLatitude, topLeftLongitude)
.bottomRight(bottomRightLatitude, bottomRightLongitude)))
.execute()
.actionGet();
return response;
提前致谢。
最佳答案
解决方案实际上非常简单,我在 haschildFilter 之前停止执行 query.matchall()。我的功能现在是这样的:
SearchResponse response = client
.prepareSearch(index)
.setPostFilter( FilterBuilders.hasChildFilter(type,FlterBuilders
.geoBoundingBoxFilter("point")
.bottomRight(bottomRightLatitude,bottomRightLongitude)
.topLeft(topLeftLatitude,topLeftLongitude))).execute()
.actionGet();
希望对大家有所帮助。
关于java - 如何在 ElasticSearch 上使用带有 JAVA API 的 hasChildFilter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22330299/
我是一名优秀的程序员,十分优秀!