Text Query has been replaced by Match Query

Closes #5727.
This commit is contained in:
David Pilato 2014-04-08 10:55:26 +02:00
parent b4c506b952
commit 0cebbf1624
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ We can also use the JSON query language Elasticsearch provides instead of a quer
curl -XGET 'http://localhost:9200/twitter/tweet/_search?pretty=true' -d '
{
"query" : {
"text" : { "user": "kimchy" }
"match" : { "user": "kimchy" }
}
}'
</pre>