boost « Tools « 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 » Tools » boost 

1. Boost factor in MultiFieldQueryParser    stackoverflow.com

Can I boost different fields in MultiFieldQueryParser with different factors? Also, what is the maximum boost factor value I can assign to a field? Thanks a ton! Ed

2. Lucene boost: I need to make it work better    stackoverflow.com

I'm using Lucene to index components with names and types. Some components are more important, thus, get a bigger boost. However, I cannot get my boost to work properly. I sill ...

3. Recommended title boost?    stackoverflow.com

I have a relatively simple Lucene index, being served by Solr. The index consists of two major fields, title and body, and a few less-important fields. Most search engines give more ...

4. Index-time boosting using DIH with JdbcDataSource    stackoverflow.com

Is it possible to add boosts to docs and fields in Solr 1.4 DIH when using a JdbcDataSource? The documentation seem to suggest it's possible but I can't find any examples. There ...

5. How do you boost term relevance in Sql Server Full Text Search like you can in Lucene?    stackoverflow.com

I'm doing a typical full text search using containstable using 'ISABOUT(term1,term2,term3)' and although it supports term weighting that's not what I need. I need the ability to boost the relevancy ...

6. solr terms: boosting and dismax?    stackoverflow.com

Currently I am learning how SOLR works. Words I usually see are boosting and dismax request handler. What do they mean? I have googled it but found the explanations difficult to ...

7. In Solr, can I apply a boost to each term in a phrase?    stackoverflow.com

Using Solr, if I have a phrase: "The quick brown fox jumped over the lazy dog." Can I apply my own weighting to these words at index-time? Something like this: "The^1 quick^2 brown^2 fox^3 ..." ...

8. boost result with sentence matching in solr    stackoverflow.com

I have a basic solr installation which store articles (title, description, date) If I search for golf club and sort it by date I get every articles with golf or club in ...

9. How to boost Solr relevancy score by inverse of geodist()    stackoverflow.com

So I've implemented and successfully used Solr 4. I've got to say that Solr 4 is awesome! Anyway I successfully sorted by distance and used a geofilter to limit the results ...

10. lucene to had extra boost on first occurence    stackoverflow.com

i'm working on a system which will using apache lucene to analysis and rank a group of web page content, from different source, the problem what im facing now was, the result ...

11. Solr Lucene - boost relevancy based on a 0 to 5 star rating?    stackoverflow.com

Quite new to Solr 1.4 - seems to be very powerful indeed. However, I am stuck when trying to return search results in order of relevancy (score) and rating_value (a 0 ...

12. Solr Dismax Config for Boost Scoring    stackoverflow.com

I've seen many of this topics here but still confusing to implement it. In my case i need to do these:

  1. Search certain phrases in title & text and give title^3, text^1
  2. based ...

13. Boost solr results with one word match from multiValued    stackoverflow.com

I have solr schema with certain fields:

<field name="id" type="integer" indexed="true" stored="true" required="true" multiValued="false" />
<field name="title" type="text" indexed="true" stored="true" multiValued="false" />
<field name="note" type="text" indexed="true" stored="true" multiValued="false" />
Now i searching over it with ...

14. Boost recent item in MoreLikeThis Solr request handler    stackoverflow.com

I want to boost my MoreLikeThis results depending on there Creation date (desc) the url i'm using is http://localhost:9090/solr/core0/select/?q=power&version=2.2&start=0&rows=10&indent=on&mlt=true&mlt.fl=title,body&fl=content_id,title,seourl,cdate&mlt.count=5 But the results i get from this url are like

  1. when q=power, and ...

15. Boost score from schema    stackoverflow.com

I have a fieldType named double_score. The values here are all precomputed and can fit in a double format. I would like to use this score to boost the associated values ...

16. Solr schema and boosting by keywords/tags for item    stackoverflow.com

When users searches and clicks a result, we store this search keyword in the DB. What we get is a list of keywords for every item with the number of times item ...

17. Variety boost in SOLR    stackoverflow.com

I am working on a feature similar to Youtube suggestions (where the videos are suggested based on your viewing history). What I do is parse the history and get the user's interests, ...

18. Boost result by specified search term on top    stackoverflow.com

I'm using apache solr 3.1 with drupal How can boost result on top which is specified in search field? Example in search field, if user enters continuing, solr shows the document which have ...

19. How can I boost results based on a parameter in SOLR    stackoverflow.com

Depending on a parameter (user type) I need a different result order. For example: if a user is a baker and he types "f" in the searchfield he will get an auto-suggestion ...

20. How to boost longer ngrams in solr?    stackoverflow.com

I use following filter in the schema.xml:

<filter class="solr.EdgeNGramFilterFactory" minGramSize="4" maxGramSize="15" side="front"/>
How can I boost the longer ngrams? For example, when I search for "bookpage", a document which contains "bookpage" should be ...

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.