[
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
[
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
[
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
[
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
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
[
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
[
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
[
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
[
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
[
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).
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
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
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
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
--
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
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
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
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
18 matches
Mail list logo