使用Nest Client在Elasticsearch中加载完成字段

时间:2014-02-14 17:10:56

标签: elasticsearch nest

我想使用Nest将完成建议字段填充到索引中。阅读此ElasticSearch blog post about implementing a completion field后,我发现您可以拥有以下属性:

  • 输入数组
  • 单输出
  • 重量
  • 有效载荷

我假设要将此数据加载到索引中我需要在包含上述字段的搜索对象中包含实体吗?

1 个答案:

答案 0 :(得分:6)

我能够通过创建几个类来最终加载完成字段,并遵循FluentMappingFullExample单元测试,特别是以下部分:

                    .Completion(s=>s
                    .Name(p=>p.Name.Suffix("completion"))
                    .IndexAnalyzer("standard")
                    .SearchAnalyzer("standard")
                    .MaxInputLength(20)
                    .Payloads()
                    .PreservePositionIncrements()
                    .PreserveSeparators()
                )

对于我的搜索类型实体,我创建了一个名为suggest的字段,并使其类型为CompletionField。

 public class CompletionField
{
    public CompletionField()
    {
        Input = new List<string>();
    }

    public List<string> Input { get; set; }
    //public string Output { get; set; }
    public int Weight { get; set; }
    public Payload Payload { get; set; }
}

public class Payload
{
    public int ID { get; set; }
}

我使用dapper从db加载我的实体后,然后循环结果并使用我想要的相应输入加载了我的完成字段。然后,我能够成功调用建议API并查询此数据。我希望这有助于其他人。