我的问题是如何使用NEST(c#)在percolate函数中使用多匹配,slop和模糊等搜索选项?
我想实现一个percolate函数,它返回与以下搜索函数完全相反的结果:
public List<string> search(string query){
.......
.......
var searchResponse = client.Search<Document>(s => s
.AllTypes()
.From(0)
.Take(10)
.Query(q => q // define query
.MultiMatch(mp => mp // of type MultiMatch
.Query(input.Trim())
.Fields(f => f // define fields to search against
.Fields(f3 => f3.doc_text))
.Slop(2)
.Operator(Operator.And)
.Fuzziness(Fuzziness.Auto))));
}
以下是我目前使用的渗透功能,但不知道如何包含多匹配,污点和模糊选项。我在其文档中找不到有关此内容的详细信息。
var searchResponseDoc = client.Search<PercolatedQuery>(s => s
.Query(q => q
.Percolate(f => f
.Field(p => p.Query)
.DocumentType<Document>() //I have a class called Document
.Document(myDocument))) // myDocument is an object of type Document
感谢。
答案 0 :(得分:2)
首先,您正在执行multi_match
查询,其中包含您需要的选项。在后者中,您执行percolator
查询。
如果要同时执行这两项操作,可以使用二进制和按位运算符,例如
.Query(q =>
!q.MultiMatch(mp => mp
.Query(input.Trim())
.Fields(f => f.Fields(f3 => f3.doc_text))
.Slop(2)
.Operator(Operator.And)
.Fuzziness(Fuzziness.Auto)
)
&& q.Percolate(f => f
.Field(p => p.Query)
.DocumentType<Document>()
.Document(myDocument)
)
)
不使用&&
创建bool
查询,将两个查询作为must
子句。一元!
运算符通过将查询包装在bool
中并将查询放在must_not
子句中来否定查询。
查看更多信息https://www.elastic.co/guide/en/elasticsearch/client/net-api/current/writing-queries.html
和
https://www.elastic.co/guide/en/elasticsearch/client/net-api/current/bool-queries.html