Tagged Questions

4
votes
1answer
412 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, …
3
votes
2answers
56 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; im …
1
vote
2answers
45 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 …
0
votes
2answers
64 views

Order sets of numbers for maximum distance

You have (up to 100) distinct sets of (2-4) numbers. The order of the sets or numbers in the sets does not matter. The highest number relates to the number of sets and goes up to 3 …