我正在通过 ElasticSearch NEST C# 客户端运行一个简单的查询。当我通过 http 运行相同的查询时,我收到了结果,但是我从客户端返回了零个文档。
这就是我填充数据集的方式:
curl -X POST "http://localhost:9200/blog/posts" -d @blog.json
此 POST 请求返回 JSON 结果:
http://localhost:9200/_search?q=adipiscing
这是我没有返回任何东西的代码。
public class Connector
{
private readonly ConnectionSettings _settings;
private readonly ElasticClient _client;
public Connector()
{
_settings = new ConnectionSettings("localhost", 9200);
_settings.SetDefaultIndex("blog");
_client = new ElasticClient(_settings);
}
public IEnumerable<BlogEntry> Search(string q)
{
var result =
_client.Search<BlogEntry>(s => s.QueryString(q));
return result.Documents.ToList();
}
}
我错过了什么?提前致谢 ..