[Solr boost] Date boost for certain query set

2012-10-26 Thread Alessandro Benedetti
Hi guys, I was fighting with boost factor in my edismax request handler : lst name=appends str name=defTypeedismax/str str name=bq(idente:2)^0.1/str str name=bfrecip(ms(NOW,data),3.16e-11,1,1)/str /lst I'm playing with bq( boost query) and bf (boost function). Is

Re: [Solr boost] Date boost for certain query set

2012-10-26 Thread Alessandro Benedetti
I've made some steps ahead. I'm writing a function to this sort of clustered boosting: str name=bfproduct(recip(ms(NOW,data),3.16e-11,1,1),exists(query(field:value)))/str I multiply the boost, for a specific value of some field, the exists function will return 0 or 1, and this would cancel or use

Re: [Solr boost] Date boost for certain query set

2012-10-26 Thread Jack Krupansky
26, 2012 8:37 AM To: solr-user@lucene.apache.org Subject: Re: [Solr boost] Date boost for certain query set I've made some steps ahead. I'm writing a function to this sort of clustered boosting: str name=bfproduct(recip(ms(NOW,data),3.16e-11,1,1),exists(query(field:value)))/str I multiply