Re: Boosting by facets with standard query

2009-04-19 Thread Yonik Seeley
On Fri, Apr 17, 2009 at 2:02 AM, ashokc wrote: > q=(+(content:umts)+OR+(title:umts)^2+OR+(urltext:umts)^2)+AND+(doctype:white_papers)^2+AND+(filetype:pdf)^2 > [...] > What we need is for the white_papers & pdfs to be boosted, but if and only > if such doucments are valid results to the search term

Re: Boosting by facets with standard query

2009-04-19 Thread ashokc
Thanks for the tip. Looks like a neat idea. I have never used the sort feature, so I have to create a new numeric key with values 1 or 2 - value 1 for white_papers/pdfs & 2 for others? The problem also is that the facets I need to boost can vary by query. That is, if the query term 'a', boost the

Re: Boosting by facets with standard query

2009-04-16 Thread Shalin Shekhar Mangar
On Fri, Apr 17, 2009 at 11:32 AM, ashokc wrote: > > What we need is for the white_papers & pdfs to be boosted, but if and only > if such doucments are valid results to the search term in question. How > would I write my above 'q' to accomplish that? > Thanks for explaining in detail. Basically,

Re: Boosting by facets with standard query

2009-04-16 Thread ashokc
What you indicated here is for a different purpose, is it not? I already do something similar with my 'q'. For example a sample query logged in 'catalina.out' looks like webapp=/search path=/select params={rows=15&start=0&q=(+(content:umts)+OR+(title:umts)^2+OR+(urltext:umts)^2)} when the search

Re: Boosting by facets with standard query

2009-04-16 Thread Shalin Shekhar Mangar
On Fri, Apr 17, 2009 at 1:03 AM, ashokc wrote: > > I have a query that yields results binned in several facets. How can I > boost > the results that fall in certain facets over the rest of them that do not > belong to those facets? I use the standard query format. Thank you I'm not sure what yo