Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I consider this solr psedo-doc

<doc>
<field name="title"/>
<field name="name"/>
<field name="keywords"/>
</doc>

Some doc's will have the keyword "up" which means that they should appear first (despite of their initial order position) when and only when they are part of the search results.

So lets say I have:

doc1('title1','Bob, Alice','people, up, couple')
doc2('title2','Smart Phone, Laptop, Bob','devices, electronics')

if I query with "title:title2 name:Bob" then I should get doc1 first (it has the 'up' keyword). if I query with "name:Bob" I still get doc1 first for the same reason. if I query with "name:Laptop" then I should only get doc2 in my results. doc1 should not be included since it doesnt match my search query.

Any suggestion to do this?

share|improve this question

2 Answers

up vote 0 down vote accepted

You have several options to do something like that:

  • function query / boost query (in dismax handler)
  • during index time (boost documents)
  • extract 'up' keyword to additional field and sort by this field, than score

For example (with dismax handler):

 /select?defType=dismax&q=...&bq=keywords:"up"^1000
share|improve this answer
I can only query not modify the index. an example please? – nonouco Sep 8 '11 at 15:15
If you can use dismax try something like: /select?defType=dismax&q=...&bq=keywords:"up"^1000 – negativ Sep 8 '11 at 17:07

This can be solved with Solr's query time boosting. So following the guidance from the Solr Relevancy FAQ - you could add an additional boosted search term to all queries, e.g. title:title2 name:Bob keywords:up^2

You could also at index time for each document, determine if the up keyword is present then store that in an additional field (boolean for example) in your schema and boost the query results based on that boolean field.

share|improve this answer
your first suggestion isnt going to work because in every search I have to append the keywords:up^2 so when I search with title:title10 keywords:up^2 - I will get one result despite the fact that I shouldn't – nonouco Sep 8 '11 at 14:54
Ok, then you will need to go the second route and store the additional field that you can boost on at query time. – Paige Cook Sep 8 '11 at 15:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.