Here is my case;
I have a field at my schema named elmo_field
. I want that elmo_field
should have payloaded values. i.e.
dorothy|0.46 sesame|0.37 big bird|0.19 bird|0.22
When a user searches for a keyword i.e. dorothy
I want to add 0.46 to usual score. If user searches for big bird
, 0.19 should be added and if user searches for bird
, 0.22 should be added (payloads are added - or payloads * normalize coefficient will be added).
I mean I will make a search on my index at my other fields of solr schema. And I will make another search (this one is an exact match search) at elmo_field
at same time and if matches something I will increase score with payloads.
Any ideas?