Tagged Questions
9
votes
3answers
4k views
Boost Solr results based on the field that contained the hit
I was browsing the web looking for an indexing and search framework and stumbled upon Solr.
A functionality that we absolutely need is to boost results based on what field contained the hit.
A small ...
4
votes
2answers
564 views
Problem with Lucene scoring
I have a problem with Lucene's scoring function that I can't figure out. So far, I've been able to write this code to reproduce it.
package lucenebug;
import java.util.Arrays;
import java.util.List;
...
4
votes
1answer
945 views
In Lucene how do terms get used in calculating scores, can I override it with a CustomScoreQuery?
Has someone successfully overridden the scoring of documents in a query so that the "relevancy" of a term to the field contents can be determined through one's own function? If so, was it by ...
2
votes
2answers
601 views
Lucene custom scoring for numeric fields
I would like to have, in addition to standard term search with tf-idf similarity over text content field, scoring based on "similarity" of numeric fields. This similarity will be depending on distance ...
2
votes
1answer
208 views
How to define a boost factor to each term in each document during indexing?
I want to insert another score factor in Lucene's similarity equation. The problem is that I can't just override Similarity class, as it is unaware of the document and terms it is computing scores.
...
2
votes
2answers
695 views
Different lucene search results using different search space size
I have an application that uses lucene for searching. The search space are in the thousands. Searching against these thousands, I get only a few results, around 20 (which is ok and expected).
...
1
vote
1answer
68 views
emit every document in the database with lucene
I've got an index where I need to get all documents with a standard search, still ranked by relevance, even if a document isn't a hit.
My first idea is to add a field that is always matched, but that ...
1
vote
1answer
283 views
Lucene Scoring: TermQuery w & w/o TermVectors
Does TermQuery:ExtractTerms result in a higher count when termvectors/positions/offsets are turned on? (assuming that there is more than 1 occurence of a match). Conversely, with the inverted file ...
1
vote
2answers
620 views
lucene vs solr scoring
Can some one explain (or quote a reference) to compare the scoring mechanism used by SOLR and LUCENE in simpler words.
Is there any difference in them;
I am not that good at solr/lucene but my ...
0
votes
1answer
128 views
boosting a term in lucene's query
I want to know when a term is boosted in lucene query how does scores change?
I mean what is the scoring algorithm of lucene for scoring documents when query has one or more term that boosted?
0
votes
1answer
546 views
Frequencies of lucene unigrams and bigrams
i am storing in lucene index ngrams up to level 3. When I am reading the index and calculating scoring of terms and ngrams I am obtaining results like this
TERM FREQUENCY.... TFIDF
...
0
votes
1answer
623 views
Lucene document Boosting
I am having problem with lucene boosting, Iam trying to boost a particular document which matches with the (firstname)field specified
I have posted the part of the codeenter code hereprivate static ...