I\'m trying to set up an ElasticSearch index with different analyzers for the individual fields. However, I can\'t seem to find a way to set field-specific analyzers; here\'s ho
To use a field-specific analyzer you need to specify this field in the query. Otherwise, default analyzer is used. Try
curl -XGET 'localhost:9200/twitter/_search?q=message:fight'
or
curl -XGET 'localhost:9200/twitter/_search?df=message&q=looking'