Re: Boost Strangeness

2011-06-16 Thread Erick Erickson
Right, if you've only changed WordDelimiterFilterFactory in the query, then then tokens you're analyzing may be split up. Try running some of the terms through the admin/analysis page Unless you have "catenateAll=1", in the definition, the whole term won't be there It becomes a question of

Re: Boost Strangeness

2011-06-16 Thread Judioo
fascinating Thank you so much Erik, I'm slowly beginning to understand. SO I've discovered that by defining 'splitOnNumerics="0"' on the filter class 'solr.WordDelimiterFilterFactory' ( for ONLY the query analyzer ) I can get *closer* to my required goal! Now something else odd is occuring.

Re: Boost Strangeness

2011-06-15 Thread Erick Erickson
First off, you didn't "violate groups ettiquette". In fact, yours was one of the better first posts in terms or providing enough information for us to actually help! A very useful page is the admin/analysis page to see how the analysis chain works. For instance, if you haven't changed the field ty

Re: Boost Strangeness

2011-06-15 Thread Judioo
String also does not seem to accept spaces. currently the _id fields can contain multiple ids ( using as a multiType alternative ). This is why I used the text type. On 15 June 2011 12:16, Judioo wrote: > stored="true"/> > > so all attributes except 'id' are of type text. > > I didn't know t

Re: Boost Strangeness

2011-06-15 Thread Judioo
so all attributes except 'id' are of type text. I didn't know that about the string type. So is my problem as described ( that partial matches are contributing to the calculation ) and does defining the filed type as string solve this problem. Or is my understanding completely incorrect? Th

Re: Boost Strangeness

2011-06-15 Thread Ahmet Arslan
> /solr/select/?q=b007vty6&defType=dismax&qf=id^10%20parent_id^9%20brand_container_id^8%20series_container_id^8%20subseries_container_id^8%20clip_container_id^1%20clip_episode_id^1&debugQuery=on&fl=id,parent_id,brand_container_id,series_container_id,subseries_container_id,clip_episode_id,clip_episo

Re: Boost Strangeness

2011-06-15 Thread Judioo
Apologies I have tried that method as well. /solr/select/?q=b007vty6&defType=dismax&qf=id^10%20parent_id^9%20brand_container_id^8%20series_container_id^8%20subseries_container_id^8%20clip_container_id^1%20clip_episode_id^1&debugQuery=on&fl=id,parent_id,brand_container_id,series_container_id,subser

Re: Boost Strangeness

2011-06-15 Thread Ahmet Arslan
> I have 2 document types but want to return any documents > where the requested > ID appears. The ID appears in multiple attributes but I > want to boost > results based on which attribute contains the ID. > > so my query is > > q="id:b007vty6 parent_id:b007vty6 > brand_container_id:b007vty6 > s