NEST c# - elasticsearch -电子商务过滤器组合

本文关键字:过滤器 组合 电子商务 elasticsearch NEST | 更新日期: 2023-09-27 18:06:58

我正试图实现elasticsearch到我的网店,但使用过滤器有一些麻烦。过滤是动态完成的。

例子:

我首先显示所有被索引的产品。所以没有使用过滤器。访问者可以选择自己的滤镜,如:颜色,大小,品牌,类型,类别,....

但是我现在不知道如何用elasticsearch和NEST构建搜索结果。

这是我没有过滤的解决方案:

var query = ElasticClient.Search<Product>(s => s
            .From(from)
            .Size(size)
        );

我还有另一个关于索引集合<>或列表<>的问题。我必须在这些集合上使用JsonIgnore。我能把它们也编入索引吗?

这是我的类:

/// <summary>
/// Represents a product
/// </summary>
public partial class Product    {
    private ICollection<ProductCategory> _productCategories;
    private ICollection<ProductManufacturer> _productManufacturers;
    private ICollection<ProductPicture> _productPictures;

    /// <summary>
    /// Gets or sets the name
    /// </summary>
    public virtual string Name { get; set; }
    /// <summary>
    /// Gets or sets the short description
    /// </summary>
    public virtual string ShortDescription { get; set; }

    /// <summary>
    /// Gets or sets a value indicating whether the entity is published
    /// </summary>
    public virtual bool Published { get; set; }
    /// <summary>
    /// Gets or sets a value indicating whether the entity has been deleted
    /// </summary>
    public virtual bool Deleted { get; set; }
    /// <summary>
    /// Gets or sets the date and time of product creation
    /// </summary>
    public virtual DateTime CreatedOnUtc { get; set; }
    /// <summary>
    /// Gets or sets the date and time of product update
    /// </summary>
    public virtual DateTime UpdatedOnUtc { get; set; }

    /// <summary>
    /// Gets or sets the collection of ProductCategory
    /// </summary>
    [JsonIgnore] /* added - wesley */
    public virtual ICollection<ProductCategory> ProductCategories
    {
        get { return _productCategories ?? (_productCategories = new List<ProductCategory>()); }
        protected set { _productCategories = value; }
    }
    /// <summary>
    /// Gets or sets the collection of ProductManufacturer
    /// </summary>
    [JsonIgnore] /* added - wesley */
    public virtual ICollection<ProductManufacturer> ProductManufacturers
    {
        get { return _productManufacturers ?? (_productManufacturers = new List<ProductManufacturer>()); }
        protected set { _productManufacturers = value; }
    }
    /// <summary>
    /// Gets or sets the collection of ProductPicture
    /// </summary>
    [JsonIgnore] /* added - wesley */
    public virtual ICollection<ProductPicture> ProductPictures
    {
        get { return _productPictures ?? (_productPictures = new List<ProductPicture>()); }
        protected set { _productPictures = value; }
    }

}

有人能帮我吗?

NEST c# - elasticsearch -电子商务过滤器组合

请务必阅读关于编写查询的完整文档:http://nest.azurewebsites.net/nest/writing-queries.html

下面是粘贴的节选。

Conditionless查询

编写复杂的布尔查询是一回事,但通常情况下,您需要根据用户输入来决定如何进行查询。

public class UserInput
{
    public string Name { get; set; }
    public string FirstName { get; set; }
    public int? LOC { get; set; }
}

.Query(q=> {
    QueryDescriptor<ElasticSearch> query = null;
    if (!string.IsNullOrEmpty(userInput.Name))
        query &= q.Term(p=>p.Name, userInput.Name);
    if (!string.IsNullOrEmpty(userInput.FirstName))
        query &= q
            .Term("followers.firstName", userInput.FirstName);
    if (userInput.LOC.HasValue)
        query &= q.Range(r=>r.OnField(p=>p.Loc).From(userInput.Loc.Value))
    return query;
})

这也很快变得冗长乏味。因此,nest允许您将前面的查询编写为:

.Query(q=>
    q.Term(p=>p.Name, userInput.Name);
    && q.Term("followers.firstName", userInput.FirstName)
    && q.Range(r=>r.OnField(p=>p.Loc).From(userInput.Loc))
)

如果任何查询将导致空查询,它们将不会被发送到elasticsearch。

所以如果userInput上的所有项都是null(或空字符串),除了userInput。Loc甚至不会将范围查询包装在布尔查询中,而只是发出一个普通的范围查询。

如果它们都为空,将导致一个match_all查询。

此无条件行为在默认情况下是打开的,但可以像这样打开:

 var result = client.Search<ElasticSearchProject>(s=>s
    .From(0)
    .Size(10)
    .Strict() //disable conditionlessqueries by default
    ///EXAMPLE HERE
);

但是查询本身可以选择退出或退出。

.Query(q=>
    q.Strict().Term(p=>p.Name, userInput.Name);
    && q.Term("followers.firstName", userInput.FirstName)
    && q.Strict(false).Range(r=>r.OnField(p=>p.Loc).From(userInput.Loc))
)

在这个例子中,如果userInput。Name为null或空,将导致dsleexception。无论SearchDescriptor是否使用. strict(),范围查询都将使用无条件逻辑。

还需要注意的是,无条件查询逻辑传播:

q.Strict().Term(p=>p.Name, userInput.Name);
&& q.Term("followers.firstName", userInput.FirstName)
&& q.Filtered(fq => fq
    .Query(qff => 
        qff.Terms(p => p.Country, userInput.Countries)
        && qff.Terms(p => p.Loc, userInput.Loc)
    )
)

如果userInput。国家和用户输入。

如果Loc为null或为空,则不会发出整个过滤后的查询。