Elasticsearch:获取匹配关键字的偏移量

时间:2017-01-28 07:38:08

标签: elasticsearch

我是Elasticsearch的新手。我创建了一个名为“files”的索引。然后我添加了一个包含字段名称的文档,“text”类型下的内容和下面的id 1.like。

curl -XPUT 'localhost:9200/files/text/1?pretty' -H 'Content-Type: application/json' -d'
{
    "name" : "Readme",
    "content" : "Hi this is a sample document.I created this document to explore the features of elasticsearch"
}'

我想在本文档的“内容”字段中搜索关键字[对于eg.'this']并获取其偏移量。可能吗 ?。实际上我的要求是在索引

中的'n'个文档中获取关键字的偏移量

0 个答案:

没有答案