BonieZat
BonieZat

Reputation: 183

How to do Case Insensitive Search on ElasticSearch?

I want to search data from Elastic Search Index with Case Insensitivity. For a example the word "Cat" can be search from "cat" ,"caT" ,"CAT" etc..

Please guide me to find a solution for this.

Upvotes: 0

Views: 4130

Answers (1)

Richa
Richa

Reputation: 7649

If your field is analyzed, you can use match Query

{
"match" : {
    "message" : "cat"
    }
 }

Upvotes: 1

Related Questions