Solr configuration file

2009-10-05 Thread bhaskar chandrasekar
Hi,
 
In my Solrconfig file, can any one let me know what the below does 
 
str name=qf and st name=mm represents?.
in the below mentioned.
 
requestHandler name=partitioned class=solr.SearchHandler 
    lst name=defaults
 str name=defTypedismax/str
 str name=echoParamsexplicit/str
 str name=qftext^0.5 features^1.0 name^1.2 sku^1.5 id^10.0/str
 str name=mm2lt;-1 5lt;-2 6lt;90%/str
 str name=bqincubationdate_dt:[* TO NOW/DAY-1MONTH]^2.2/str
    /lst
 
ex:text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0.What ^ and numeric part 
represents?.
Does it have any thing to do with ranking of web pages?.
 
Regards
Bhaskar


  

Re: Solr configuration file

2009-10-05 Thread Koji Sekiguchi

Both of those are parameters for dismax query, described bolow:

http://wiki.apache.org/solr/DisMaxRequestHandler

Koji

bhaskar chandrasekar wrote:

Hi,
 
In my Solrconfig file, can any one let me know what the below does 
 
str name=qf and st name=mm represents?.

in the below mentioned.
 
requestHandler name=partitioned class=solr.SearchHandler 

lst name=defaults
 str name=defTypedismax/str
 str name=echoParamsexplicit/str
 str name=qftext^0.5 features^1.0 name^1.2 sku^1.5 id^10.0/str
 str name=mm2lt;-1 5lt;-2 6lt;90%/str
 str name=bqincubationdate_dt:[* TO NOW/DAY-1MONTH]^2.2/str
/lst
 
ex:text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0.What ^ and numeric part represents?.

Does it have any thing to do with ranking of web pages?.
 
Regards

Bhaskar