使用NEST在ElasticSearch 2.x中搜索多种类型时,如何得到混合结果?

问题描述 投票:0回答:1

我是Elastic Search的新手,偶然发现了这个问题。当从同一个索引中搜索多个文档类型时,这些类型将被附加到结果文档集中,而不是默认按增强字段排序。我的文档类型共享相同的字段。

这是我的搜索查询:

        var response = await client.SearchAsync<ProductListResponse>(s => s
            .Type("product,productbundle")
            .Index(index)
            .From(from)
            .Size(size)
            .Query(fsq => fsq
                .FunctionScore(c => c.Query(q => q
                    .MultiMatch(m => m.Query(request.Query)
                    .Fields(f => f
                        .Field(n => n.Name, 100.0)
                        .Field(n => n.NameWithoutSpecialChars, 100.0)
                        .Field(n => n.ProductName)
                        .Field(n => n.TeaserText)
                        .Field(n => n.Description)
                        .Field(n => n.Features)
                        .Field(n => n.Modules)
                       )
                    .Type(TextQueryType.PhrasePrefix)
                   )
                ).Functions(f => f
                    .FieldValueFactor(b => b
                            .Field(p => p.IsBoosted)
                            .Modifier(FieldValueFactorModifier.Log1P))
                )
             )
           )
            .Sort(ss => ss
                .Descending(SortSpecialField.Score))
            .PostFilter(filter => filter.Bool(b => b.Must(must => allFilters)))
            .Source(sr => sr
                .Include(fi => fi
                    .Field(f => f.Name)
                    .Field(n => n.ProductName)
                    .Field(n => n.TeaserText)
                    .Field(f => f.Image)
                    .Field(f => f.Thumbnail)
                    .Field(f => f.Url)
                    .Field(f => f.Features)
                )
            )
       );

感谢您的任何帮助。

我希望不要将带有附加组件的产品类型调整为productbundle类型。

c# .net elasticsearch nest
1个回答
0
投票

我可以确认.Type()不会使订单混乱。我的问题是增强属性在索引捆绑包时没有值。

© www.soinside.com 2019 - 2024. All rights reserved.