Re: Filter by Type increases search results.

2008-07-18 Thread chris sleeman
btw, this *seems* to only work for me with standard search handler. dismax and fq: dont' seem to get along nicely... Wouldnt the dismax parser consider the filter query parameter as type idea and not value idea for solr field - type? I guess thats the reason this query doesnt work with dismax,

Re: Filter by Type increases search results.

2008-07-18 Thread Preetam Rao
I have used fq the way it is with dismax and it works fine. fq is standard parameter and not specific to dismax. So type:idea should work correctly. - Preetam On Fri, Jul 18, 2008 at 11:30 AM, chris sleeman [EMAIL PROTECTED] wrote: btw, this *seems* to only work for me with standard search

Re: Filter by Type increases search results.

2008-07-18 Thread chris sleeman
I am not saying that fq parameter does not work with dismax. I am saying that the way this query is written it wont work because the dismax query handler would parse type:idea to a value type idea (without the colon) which changes the query. This would be a problem whether you use it in the main

Re: Filter by Type increases search results.

2008-07-18 Thread chris sleeman
oops...my bad please ignore the previous comment. On Fri, Jul 18, 2008 at 6:07 PM, chris sleeman [EMAIL PROTECTED] wrote: I am not saying that fq parameter does not work with dismax. I am saying that the way this query is written it wont work because the dismax query handler would parse

Filter by Type increases search results.

2008-07-15 Thread matt connolly
-by-Type-increases-search-results.-tp18462188p18462188.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Filter by Type increases search results.

2008-07-15 Thread Preetam Rao
synonyms (and rebuilt indexes) and this makes no difference. Any ideas why filtering the type results in more search documents matched? -- View this message in context: http://www.nabble.com/Filter-by-Type-increases-search-results.-tp18462188p18462188.html Sent from the Solr - User mailing

Re: Filter by Type increases search results.

2008-07-15 Thread matt connolly
be a subset of results returned from q. So if one uses just q, and other uses q and fq, for the same q, the second will have equal or less number of documents. Preetam -- View this message in context: http://www.nabble.com/Filter-by-Type-increases-search-results

Re: Filter by Type increases search results.

2008-07-15 Thread Preetam Rao
it should always be a subset of results returned from q. So if one uses just q, and other uses q and fq, for the same q, the second will have equal or less number of documents. Preetam -- View this message in context: http://www.nabble.com/Filter-by-Type-increases-search

Re: Filter by Type increases search results.

2008-07-15 Thread matt connolly
Of course - it's so obvious now. Thanks! -- View this message in context: http://www.nabble.com/Filter-by-Type-increases-search-results.-tp18462188p18464457.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Filter by Type increases search results.

2008-07-15 Thread Norberto Meijome
On Tue, 15 Jul 2008 18:07:43 +0530 Preetam Rao [EMAIL PROTECTED] wrote: When I say filter, I meant q=fishfq=type:idea btw, this *seems* to only work for me with standard search handler. dismax and fq: dont' seem to get along nicely... but maybe, it is just late and i'm not testing it