How do I specify AND operation in URI based query? I\'m looking for something like:
http://localhost:9200/_search?q=\"profiletype:student AND username:s*\"
According to documentation, it should work as you described it. See http://www.elasticsearch.org/guide/reference/query-dsl/query-string-query.html
That said, you can also use the following:
http://localhost:9200/_search?q="+profiletype:student +username:s*"