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
|
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 ... |
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 ... |
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 ... |
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 ... |
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 ... |
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 ..." ... |
|
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 ... |
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 ... |
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 ... |
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 ... |
I've seen many of this topics here but still confusing to implement it. In my case i need to do these:
- Search certain phrases in title & text and give title^3, text^1
- based ...
|
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 ... |
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
- when q=power, and ...
|
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 ... |
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 ... |
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, ... |
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 ... |
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 ... |
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 ... |