I am using ElasticSearch in the Codeigniter Framework.
My hosting Company do not allow Elasticsearch as service on my managed server.
I am new to Elastic search and am testing it using a remote server at facetflow.
I cannot install Elastic PHP for same reason above.
I had to resolve in using a CI Library found here: https://github.com/confact/elasticsearch-codeigniter-library
I can index, delete, update and do basic searching.
I am stuck where I should create a multiple term search.
Is there any indication on how I should then, with PHP be able to create a multiple term query like the following?
curl -XGET https://domain/type/_search -d '{ "query": { "filtered": { "query": { "query_string": { "query": "Car For Sale" } }, "filter": { "bool" : { "must" : [ {"term" : { "provid" : "5" } }, {"term" : { "areaid" : "16" } }, {"term" : { "catid" : "3" } } ] } } } } }'