I was able to search for a couple of keywords in 2 different fields using the code below:
curl -XGET 'localhost:9200/INDEXED_REPO/_search?pretty' -H 'Content-Type:
application/json' -d'{"query" : {"constant_score" : {"filter" : {"bool" :
{"should" : [{ "terms" : {"description" : ["heart","cancer"]}},{ "terms" :
{"title" : ["heart","cancer"]}}]}}}}}'
However, when I put 15000 keywords, the server suddenly closed my terminal. I am using Mobaxterm. What is the best solution to include this many keywords?