2

我正在为 elasticsearch 编写一个与国家列表匹配的嵌套查询 - 只要列表中的任何国家出现在 ESCountryDescription(国家列表)中,它就会立即匹配。我只想在 CountryList 中的所有国家/地区都匹配 ESCountryDescription 时进行匹配。我相信我需要在这个例子中使用 MinimumShouldMatch http://www.elastic.co/guide/en/elasticsearch/reference/0.90/query-dsl-terms-query.html

a.Terms(t => t.ESCountryDescription, CountryList)

但是我找不到将 MinimumShouldMatch 添加到上面的查询中的方法。

4

2 回答 2

2

您可以MinimumShouldMatchTermsDescriptor. 这是一个例子:

var lookingFor = new List<string> { "netherlands", "poland" };

var searchResponse = client.Search<IndexElement>(s => s
    .Query(q => q
        .TermsDescriptor(t => t.OnField(f => f.Countries).MinimumShouldMatch("100%").Terms(lookingFor))));

或者

var lookingFor = new List<string> { "netherlands", "poland" };

var searchResponse = client.Search<IndexElement>(s => s
                .Query(q => q
                    .TermsDescriptor(t => t.OnField(f => f.Countries).MinimumShouldMatch(lookingFor.Count).Terms(lookingFor))));

这是整个例子

class Program
{
    public class IndexElement
    {
        public int Id { get; set; }
        [ElasticProperty(Index = FieldIndexOption.NotAnalyzed)]
        public List<string> Countries { get; set; }
    }

    static void Main(string[] args)
    {
        var indexName = "sampleindex";

        var uri = new Uri("http://localhost:9200");
        var settings = new ConnectionSettings(uri).SetDefaultIndex(indexName).EnableTrace(true);
        var client = new ElasticClient(settings);

        client.DeleteIndex(indexName);

        client.CreateIndex(
            descriptor =>
                descriptor.Index(indexName)
                    .AddMapping<IndexElement>(
                        m => m.MapFromAttributes()));

        client.Index(new IndexElement {Id = 1, Countries = new List<string> {"poland", "germany", "france"}});
        client.Index(new IndexElement {Id = 2, Countries = new List<string> {"poland", "france"}});
        client.Index(new IndexElement {Id = 3, Countries = new List<string> {"netherlands"}});

        client.Refresh();

        var lookingFor = new List<string> { "germany" };

        var searchResponse = client.Search<IndexElement>(s => s
            .Query(q => q
                .TermsDescriptor(t => t.OnField(f => f.Countries).MinimumShouldMatch("100%").Terms(lookingFor))));
    }
}

关于你的问题

  1. 对于术语:“荷兰”,您将获得 ID 为 3 的文件
  2. 对于术语:“波兰”和“法国”,您将获得 ID 为 1 和 2 的文件
  3. 对于术语:“德国”,您将获得 ID 为 1 的文档
  4. 对于术语:“波兰”、“法国”和“德国”,您将获得 ID 为 1 的文件

我希望这是你的观点。

于 2015-03-31T10:04:18.770 回答
1

而不是做

.Query(q => q
    .Terms(t => t.ESCountryDescription, CountryList))

您可以使用以下命令

.Query(q => q
    .TermsDescriptor(td => td
        .OnField(t => t.ESCountryDescription)
        .MinimumShouldMatch(x)
        .Terms(CountryList)))

在 elasticsearch-net Github 存储库中查看单元测试

于 2015-03-31T14:10:41.883 回答