Re: Combining several documents in a terms filter

2015-04-24 Thread Bruno Miranda
Is there an upper limit of bool filters? On Friday, April 17, 2015 at 10:18:38 PM UTC-7, vineeth mohan wrote: Hello Daniel , Feel free to use should clause in bool filter http://www.elastic.co/guide/en/elasticsearch/reference/1.4/query-dsl-bool-filter.html . Here you can give multiple

Combining several documents in a terms filter

2015-04-17 Thread Daniel Nill
In the example here http://www.elastic.co/guide/en/elasticsearch/reference/0.90/query-dsl-terms-filter.html#_terms_lookup_twitter_example, it is indicated that the id field can only be for a single document. Is there a way to do: curl -XGET localhost:9200/tweets/_search -d '{ query : {

Re: Combining several documents in a terms filter

2015-04-17 Thread vineeth mohan
Hello Daniel , Feel free to use should clause in bool filter http://www.elastic.co/guide/en/elasticsearch/reference/1.4/query-dsl-bool-filter.html . Here you can give multiple terms filter and each of them can point to a different document/field. Thanks Vineeth Mohan,