Re: Own Similarity Class in Solr

2006-07-28 Thread Chris Hostetter
:I have a field "searchname" with a boost of "3.0" during the : document.add. Another field "text" is a copyField of several entries, index time "field boosts", "document boosts", and document length are all factored into the "fieldNorm" value at indexing time -- so if you want to use field bo

Re: Own Similarity Class in Solr

2006-07-27 Thread Tom Weber
Hi Chris, thanks for the details, I am meanwhile poking around with my own class which I defined in the schema.xml everything is working perfectly there. But I have still the problem with the normalization, I try to change several parameters to fix it to 1.0, this does indeed change

Re: Own Similarity Class in Solr

2006-07-27 Thread Chris Hostetter
:I would like to alter the similarity behaviour of solr to remove : the fieldnorm factor in the similarity calculations. As far as I : read, I need to recreate my own similarity class and import it into : solr using the config in schema.xml. : :Has anybody already tweaked or played with

Own Similarity Class in Solr

2006-07-26 Thread Tom Weber
Hello, I would like to alter the similarity behaviour of solr to remove the fieldnorm factor in the similarity calculations. As far as I read, I need to recreate my own similarity class and import it into solr using the config in schema.xml. Has anybody already tweaked or played wit