[jira] Commented: (LUCENE-500) Lucene 2.0 requirements - Remove all deprecated code

2006-03-03 Thread Grant Ingersoll (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-500?page=comments#action_12368704 ] Grant Ingersoll commented on LUCENE-500: Does that mean, then, that the usages of it in the QueryParser and the DateFilter need to be preserved as well? Doesn't that

[jira] Commented: (LUCENE-502) TermScorer caches values unnecessarily

2006-03-03 Thread Steven Tamm (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-502?page=comments#action_12368768 ] Steven Tamm commented on LUCENE-502: If you're using a WildcardTermEnum, this optimization saves a ton. We usually do wildcard searches which retrieve 50-5000 terms. Sin

[jira] Commented: (LUCENE-502) TermScorer caches values unnecessarily

2006-03-03 Thread Doug Cutting (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-502?page=comments#action_12368770 ] Doug Cutting commented on LUCENE-502: - It is not clear to me that your uses are typical uses. These optimizations were added because they made big improvements. They wer

[jira] Commented: (LUCENE-505) MultiReader.norm() takes up too much memory: norms byte[] should be made into an Object

2006-03-03 Thread Doug Cutting (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-505?page=comments#action_12368771 ] Doug Cutting commented on LUCENE-505: - It is not clear to me that your uses are typical uses. These optimizations were added because they made big improvements. They wer

Lucene 1.9.1 release available

2006-03-03 Thread Doug Cutting
Release 1.9.1 of Lucene is now available from: http://www.apache.org/dyn/closer.cgi/lucene/java/ This fixes a serious bug in 1.9-final. It is strongly recommended that all 1.9-final users upgrade to 1.9.1. For details see: http://svn.apache.org/repos/asf/lucene/java/tags/lucene_1_9_1/CHANGE

[jira] Commented: (LUCENE-502) TermScorer caches values unnecessarily

2006-03-03 Thread Steven Tamm (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-502?page=comments#action_12368775 ] Steven Tamm commented on LUCENE-502: The main point is this: When you are using TermScorer to score one document, it is doing a lot of extra work. It's reading 31 extra

[jira] Commented: (LUCENE-502) TermScorer caches values unnecessarily

2006-03-03 Thread Doug Cutting (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-502?page=comments#action_12368782 ] Doug Cutting commented on LUCENE-502: - > The question is how does the caching help when you have multiple documents. > My analysis is that (with a modern VM) it helps you

[jira] Commented: (LUCENE-502) TermScorer caches values unnecessarily

2006-03-03 Thread Steven Tamm (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-502?page=comments#action_12368784 ] Steven Tamm commented on LUCENE-502: > The conjunctive scorer does not call score(HitCollector,int). This is only > called in a few cases anymore. However, in your comme

[jira] Commented: (LUCENE-502) TermScorer caches values unnecessarily

2006-03-03 Thread paul.elschot (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-502?page=comments#action_12368792 ] paul.elschot commented on LUCENE-502: - >> The question is how does the caching help when you have multiple documents. >> My analysis is that (with a modern VM) it helps yo

[jira] Commented: (LUCENE-502) TermScorer caches values unnecessarily

2006-03-03 Thread Doug Cutting (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-502?page=comments#action_12368797 ] Doug Cutting commented on LUCENE-502: - > Which is true? Or, as it seems likely, TermScorer was optimized for a case > that is no longer valid (i.e. ConjunctiveScorer).

ArrayIndexOutOfBoundsException in org.apache.lucene.search.BooleanScorer2$Coordinator.coordFactor

2006-03-03 Thread Robin H. Johnson
I've been developing a search application, and finally rolled it to production-testing yesterday, after a few million hits on our 5 search nodes, I've found a glitch in Lucene :-). Unfortunately I don't have the queries that triggered this - it occurred a total of 11 times over the first 3 million

Re: ArrayIndexOutOfBoundsException in org.apache.lucene.search.BooleanScorer2$Coordinator.coordFactor

2006-03-03 Thread Robin H. Johnson
On Fri, Mar 03, 2006 at 03:28:22PM -0800, Robin H. Johnson wrote: > I've been developing a search application, and finally rolled it to > production-testing yesterday, after a few million hits on our 5 search > nodes, I've found a glitch in Lucene :-). I left out the Lucene version. It's 1.9 with t

Re: Lucene 1.9.1 release available

2006-03-03 Thread Shay Banon
And I was hoping to get my name in Lucene CHANGES.txt. You know, something to show my children ;-) On 3 Mar 2006, at 18:26, Doug Cutting wrote: Release 1.9.1 of Lucene is now available from: http://www.apache.org/dyn/closer.cgi/lucene/java/ This fixes a serious bug in 1.9-final. It is stro

Online javadocs: 1.9-rc1

2006-03-03 Thread Chris Hostetter
Someone with the neccessary permisions to update the javadocs on the website might want to do so, they currently say "Lucene 1.9-rc1 API" which might confuse people (even if the API is exactly the same as 1.9.1) http://lucene.apache.org/java/docs/api/ -Hoss --

Re: Online javadocs: 1.9-rc1

2006-03-03 Thread Doug Cutting
I just updated this. Thanks for catching it. Doug Chris Hostetter wrote: Someone with the neccessary permisions to update the javadocs on the website might want to do so, they currently say "Lucene 1.9-rc1 API" which might confuse people (even if the API is exactly the same as 1.9.1) http://l

Re: Lucene 1.9.1 release available

2006-03-03 Thread Doug Cutting
Shay Banon wrote: And I was hoping to get my name in Lucene CHANGES.txt. You know, something to show my children ;-) Sorry, I was working quickly. I just added you! Doug - To unsubscribe, e-mail: [EMAIL PROTECTED] For addit

FilteredQuery within BooleanQuery issue

2006-03-03 Thread Erik Hatcher
I've run into what I feel is an issue with FilteredQuery. The best description is an example. First I've indexed three documents: public void setUp() throws IOException { RAMDirectory directory = new RAMDirectory(); IndexWriter writer = new IndexWriter(directory, new WhitespaceAna

Re: FilteredQuery within BooleanQuery issue

2006-03-03 Thread Yonik Seeley
This is the first time I've looked at FilteredQuery, but the scorer is indeed flawed IMO. next() and skipTo() simply iterate over the documents that match the query, and just modify the score to return 0 if it doesn't match the filter. public boolean next() throws IOException { return sc