My use for Solr is to generate a primary search system : we basically feed a large set of documents in small batches and search a pre-specified query on it. Each of these documents is scanned for this particular query and if found, we need to store the database the file index id, path and hit count of that string in that document. I have searched online for ways to extract hit count values from solr for each document, but all I have understood so far is that Solr automatically sorts its results on the basis of hit-count and a variety of other factors, which you can edit using boosts and function query parameters.
Is there an established way of extracting hit count from Solr?
If not, is it possible to alter Solr's scoring formula such that it ONLY considers hit count, and then ask Solr to return the score (which would essentially be the hit-count in this case)
(I'm sorry that my question appeared a little confusing. I only want the hit count returned from Solr for each document so that I can store it in my database. Is that directly possible through solr? By hit-count, i mean that if i'm searching for a particular keyword, the no. of occurences in the indexed fields for each document in the Solr index.)
SOLR Results are actually sorted on the basis of the document's relevancy score right, which includes term frequency and a lot of other smaller factors.... i want only the hit-count to be returned : I was wondering if there is either a direct way to get the hit-count, or to alter how Solr scores documents so that it only scores on the basis of term frequency factor and get the term frequency value for each doc in my SOLR output