有关搜索_id
字段的两个问题:
我想使用elastic4s dsl查找是否存在特定ID。这个查询elasticsearch API的aquivilent:
curl -XGET'http://localhost:9200/indexName/indexType/_search/exists?q=_id:foo'
我试着这样做:
client execute search(indexName / indexType) query ("_id", "foo")
但这会产生SearchDefinition
isExists
_id
我想获取所有innerHTML
个
到目前为止,我得到了这个解决方案,但我不确定这是不是这样做的方法
client.execute(搜索(indexName / indexType)查询“ id”)。map( .ids)
答案 0 :(得分:2)
search("electronics" / "phone").query(idsQuery("foo"))