i want to set my own custom similarity in my solr schema.xml but i have a few problems with understanding this feature. I want to completely deactivate solr scoring (tf,idf,coord and fieldNorm).
I dont know where to start. Things i know
- I have to write my own DefaultSimilarity implementation.
- Override the (tf,idf,coord and fieldNorm) - methods.
- Load the class in schem.xml
Where to store the class ? Are there any working examples in the web ? I cant find one!
THANKS