score « document « Java Lucene Q&A

Home
Java Lucene Q&A
1.Database
2.Development
3.document
4.Field
5.index
6.lucene
7.lucene.net
8.nutch
9.query
10.solr
11.Tools
Java Lucene Q&A » document » score 

1. Document score    stackoverflow.com

I'm trying to read document score of lucene search results. I get a set of document scores through the hits object when I use the following method : Hits hits = IndexSearcher.search(myQuery); However,if i ...

2. SOLR - Boost function (bf) to increase score of documents whose date is closest to NOW    stackoverflow.com

I have a solr instance containing documents which have a 'startTime' field ranging from last month to a year from now. I'd like to add a boost query/function to boost the ...

3. Lucene document Boosting    stackoverflow.com

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 Document ...

4. ApacheSolr: Boosting score of a document without deleting and adding another document    stackoverflow.com

I want to add score for documents dynamically. For this, the method that I know right now is to use "add". Using this method, everytime I need to get the contents ...

5. Solr: How can I get all documents ordered by score with a list of keywords?    stackoverflow.com

I have a Solr 3.1 database containing Emails with two fields:

  • datetime
  • text
For the query I have two parameters:
  • date of today
  • keyword array("important thing", "important too", "not so important, but more than average")
Is it ...

6. Lucene document score appears to be lost after search    stackoverflow.com

In lucene 3.1 i have a large boolean query, that i execute like so: IndexSearcher is = new IndexSearcher(myDir); is.search(query, 10); I get 10 results just fine, but they are sorted by docId, and ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.