Pages

Monday, December 17, 2012

Highlighting search results with the query term in ElasticSearch


 curl -XGET 'http://localhost:9200/document/_search?pretty=true' -d '{
    "query" : { "query_string" : { "query": "assistance in voting" }},
    "highlight" : {
        "fields" : {
            "text" : {}
        }
    }
}'


No comments:

Post a Comment