You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-user@lucene.apache.org by Chris Hostetter <ho...@fucit.org> on 2009/03/01 18:42:59 UTC

Re: bq type_:true for two types doesn't come up books.

: So if I do :
: &bq=type_roman:true^1,5+type_comedy:true^1,5
: no video come up 

first off: that syntax doesn't make senes ... those are commas, you need 
decimal points (1.5 not 1,5)

second: i don't really understand your goal, you say you want to boost 
things that match those values, but then you seem dissatisfied that 
documents which don't match those queries aren't showing up high in the 
results.

my best guess is that you want books matching those queries boosted, but 
only over other books, not videos.

try something like this...

	(type_roman:true type_comedy:true format:video)^1.5


-Hoss