Pages

Monday, November 26, 2012

Highlighting search results with the query term in ElasticSearch


Highlighting search results with the query term in ElasticSearch:

curl -XGET 'http://localhost:9200/document/_search?pretty=true' -d '{
    "query" : { "term" : { "title": "mobile" }},
    "highlight" : {
        "fields" : {
            "text" : {}
        }
    }
}'

No comments:

Post a Comment