Re: Questions about filters and scoring

2008-02-19 Thread Reece
The omitNorms=true attribute worked perfectly, thanks Yonik! Also, the stopword issue isn't happening anymore, go figure. I probably had a mistype or something as well, Thanks for the help! -Reece On Feb 18, 2008 7:17 PM, Reece [EMAIL PROTECTED] wrote: For #1, I just testing again and found

Re: Questions about filters and scoring

2008-02-18 Thread Yonik Seeley
On Feb 18, 2008 3:56 PM, Reece [EMAIL PROTECTED] wrote: Hello Everyone, First off, sorry about the thread hijack earlier, it was not intentional. Back to the point though, I'm having some issues getting SOLR to work with our dataset. I'm using it to index ticket data for our technical

Re: Questions about filters and scoring

2008-02-18 Thread Yonik Seeley
On Feb 18, 2008 4:42 PM, Yonik Seeley [EMAIL PROTECTED] wrote: Hmmm, looks like a recent change in lucene probably causes this bug. Nope... I just checked Solr 1.2, and it shows the same behavior. With the example data, a query of optimized for high finds the solr document, but optimized for

Re: Questions about filters and scoring

2008-02-18 Thread Yonik Seeley
On Feb 18, 2008 5:05 PM, Yonik Seeley [EMAIL PROTECTED] wrote: On Feb 18, 2008 4:42 PM, Yonik Seeley [EMAIL PROTECTED] wrote: Hmmm, looks like a recent change in lucene probably causes this bug. Nope... I just checked Solr 1.2, and it shows the same behavior. With the example data, a query

Re: Questions about filters and scoring

2008-02-18 Thread Yonik Seeley
On Feb 18, 2008 4:50 PM, Lance Norskog [EMAIL PROTECTED] wrote: But then would not 'certificate anystopword found' match your phrase? Yes... stopwords are ignored, so that's what it should do in general. -Yonik

RE: Questions about filters and scoring

2008-02-18 Thread Lance Norskog
Subject: Re: Questions about filters and scoring On Feb 18, 2008 3:56 PM, Reece [EMAIL PROTECTED] wrote: Hello Everyone, First off, sorry about the thread hijack earlier, it was not intentional. Back to the point though, I'm having some issues getting SOLR to work with our dataset. I'm using

Re: Questions about filters and scoring

2008-02-18 Thread Reece
For #1, I just testing again and found the problem. WordDelimiterFilterFactory was splitting the words up because it had capitals in the middle of the word, so a lower case version was seen as a different set of tokens. For #2, I'll try using that attribute for the fieldtype and let you know how