boosting with standard search handler

2011-03-24 Thread Gastone Penzo
Hi,
is possibile to boost fields like bf parameter of dismax in standard request
handler?
with or without funcions?

thanx

-- 
Gastone Penzo

*www.solr-italia.it*
*The first italian blog about Apache Solr*


Re: boosting with standard search handler

2011-03-24 Thread Tommaso Teofili
Hi Gastone,
I used to do that in standard search handler using the following parameters:
q={!boost b=query($qq,0.7)} text:something title:other
qq=date:[NOW-60DAY TO NOW]^5 OR date:[NOW-15DAY TO NOW]^8
that enabling custom recency based boosting.
My 2 cents,
Tommaso


2011/3/24 Gastone Penzo gastone.pe...@gmail.com

 Hi,
 is possibile to boost fields like bf parameter of dismax in standard
 request handler?
 with or without funcions?

 thanx

 --
 Gastone Penzo

 *www.solr-italia.it*
 *The first italian blog about Apache Solr*



Re: boosting with standard search handler

2011-03-24 Thread Gastone Penzo
Thank you Tommaso..
your solution works.
i read there's another methor, using _val_ parameter.

Thank

Gastone

2011/3/24 Tommaso Teofili tommaso.teof...@gmail.com

 Hi Gastone,
 I used to do that in standard search handler using the following
 parameters:
 q={!boost b=query($qq,0.7)} text:something title:other
 qq=date:[NOW-60DAY TO NOW]^5 OR date:[NOW-15DAY TO NOW]^8
 that enabling custom recency based boosting.
 My 2 cents,
 Tommaso


 2011/3/24 Gastone Penzo gastone.pe...@gmail.com

  Hi,
  is possibile to boost fields like bf parameter of dismax in standard
  request handler?
  with or without funcions?
 
  thanx
 
  --
  Gastone Penzo
 
  *www.solr-italia.it*
  *The first italian blog about Apache Solr*
 




-- 
Gastone Penzo