[jira] Commented: (LUCENE-2293) IndexWriter has hard limit on max concurrency

2010-03-03 Thread Shai Erera (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2293?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12841106#action_12841106 ] Shai Erera commented on LUCENE-2293: bq. The IndexWriter (or a new class) would have t

[jira] Commented: (LUCENE-1879) Parallel incremental indexing

2010-03-03 Thread Shai Erera (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1879?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12841078#action_12841078 ] Shai Erera commented on LUCENE-1879: (Warning, this post is long, and is easier to rea

[jira] Commented: (LUCENE-2293) IndexWriter has hard limit on max concurrency

2010-03-03 Thread Michael Busch (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2293?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12840952#action_12840952 ] Michael Busch commented on LUCENE-2293: --- bq. I hope we won't lose monotonic docIDs f

[jira] Commented: (LUCENE-2293) IndexWriter has hard limit on max concurrency

2010-03-03 Thread Earwin Burrfoot (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2293?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12840949#action_12840949 ] Earwin Burrfoot commented on LUCENE-2293: - bq. The IndexWriter (or a new class) wo

[jira] Commented: (LUCENE-2293) IndexWriter has hard limit on max concurrency

2010-03-03 Thread Jason Rutherglen (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2293?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12840918#action_12840918 ] Jason Rutherglen commented on LUCENE-2293: -- Mike, good one! Would having a doc i

[jira] Commented: (LUCENE-2293) IndexWriter has hard limit on max concurrency

2010-03-03 Thread Michael Busch (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2293?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12840911#action_12840911 ] Michael Busch commented on LUCENE-2293: --- Good timing - a couple days ago I was think

[jira] Created: (LUCENE-2293) IndexWriter has hard limit on max concurrency

2010-03-03 Thread Michael McCandless (JIRA)
IndexWriter has hard limit on max concurrency - Key: LUCENE-2293 URL: https://issues.apache.org/jira/browse/LUCENE-2293 Project: Lucene - Java Issue Type: Bug Components: Index

[jira] Commented: (LUCENE-2089) explore using automaton for fuzzyquery

2010-03-03 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2089?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12840836#action_12840836 ] Robert Muir commented on LUCENE-2089: - Thanks Mike, I'll regen tonight and pass thru t

[jira] Updated: (LUCENE-2089) explore using automaton for fuzzyquery

2010-03-03 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2089?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michael McCandless updated LUCENE-2089: --- Attachment: createLevAutomata.py Added usage line, fixed missing space in license he

[jira] Updated: (LUCENE-2089) explore using automaton for fuzzyquery

2010-03-03 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2089?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir updated LUCENE-2089: Attachment: LUCENE-2089.patch first shot at a committable patch. please review. > explore using a

Re: Turning IndexReader.isDeleted implementations to final

2010-03-03 Thread Michael McCandless
On Wed, Mar 3, 2010 at 11:10 AM, Grant Ingersoll wrote: > > On Mar 1, 2010, at 2:51 AM, Michael McCandless wrote: > >> Yeah in the case of DirectoryReader/MultiReader, I'd like for them to >> be final, not for performance but for door-shutting (ie the same >> reason we make analyzers final). > > D

[jira] Commented: (LUCENE-2089) explore using automaton for fuzzyquery

2010-03-03 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2089?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12840718#action_12840718 ] Robert Muir commented on LUCENE-2089: - bq. So eg maybe they could check in a LICENSE f

RE: Lucene Filter

2010-03-03 Thread Uwe Schindler
Maybe now its also running correct with the filter? - Uwe Schindler H.-H.-Meier-Allee 63, D-28213 Bremen http://www.thetaphi.de eMail: u...@thetaphi.de > -Original Message- > From: Dyutiman [mailto:dyutiman.chaudh...@gmail.com] > Sent: Wednesday, March 03, 2010 2:34 PM > To: java-dev

Re: Turning IndexReader.isDeleted implementations to final

2010-03-03 Thread Michael McCandless
This is actually what I mean by [intentional] door shutting -- we want to disallow extending our analyzers because it can easily lead to sneaky problems, and, because it's so simple to make your own analyzer that builds up the same chain. Mike On Wed, Mar 3, 2010 at 11:14 AM, Robert Muir wrote:

Re: Turning IndexReader.isDeleted implementations to final

2010-03-03 Thread Robert Muir
In the analyzers case, I don't think its really door-shutting. if someone extends an Analyzer, its likely to just result in problems from the tokenStream/reusableTokenStream mess. On Wed, Mar 3, 2010 at 11:10 AM, Grant Ingersoll wrote: > > On Mar 1, 2010, at 2:51 AM, Michael McCandless wrote: > >

Re: Turning IndexReader.isDeleted implementations to final

2010-03-03 Thread Grant Ingersoll
On Mar 1, 2010, at 2:51 AM, Michael McCandless wrote: > Yeah in the case of DirectoryReader/MultiReader, I'd like for them to > be final, not for performance but for door-shutting (ie the same > reason we make analyzers final). Door shutting often is not a good thing, especially in a project lik

[jira] Commented: (LUCENE-2280) IndexWriter.optimize() throws NullPointerException

2010-03-03 Thread Ritesh Nigam (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2280?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12840660#action_12840660 ] Ritesh Nigam commented on LUCENE-2280: -- Sorry for the delayed response but i was tryi

[jira] Commented: (LUCENE-2089) explore using automaton for fuzzyquery

2010-03-03 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2089?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12840658#action_12840658 ] Michael McCandless commented on LUCENE-2089: Mercurial (hg) is just the source

Re: Lucene Filter

2010-03-03 Thread Dyutiman
Oho... actually I didn't check that part of my code at all Thanks a lot for pointing out this to me. The search is running perfectly now thanks Dyutiman -- View this message in context: http://old.nabble.com/Lucene-Filter-tp27756577p27768251.html Sent from the Lucene - Java Developer m

Re: Lucene Filter

2010-03-03 Thread mark harwood
>>Document doc = searcher.doc(i); Isn't "i" your results order number as opposed to a lucene document id? I.e. the first result could be document id 3,232,432 but you are asking for doc #1 You need to get to doc id out of topDocs Cheers Mark - Original Message From: Dyutiman To:

Re: Lucene Filter

2010-03-03 Thread Dyutiman
Thanks Erick, I tried Luke and it seems that my index is fine (see the screenshot attached http://old.nabble.com/file/p27767115/luke.JPG luke.JPG ). That means I did something wrong in my code. I am attaching my search code here also ( http://old.nabble.com/file/p27767115/SearchUtil.java SearchUt

[jira] Commented: (LUCENE-2089) explore using automaton for fuzzyquery

2010-03-03 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2089?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12840585#action_12840585 ] Robert Muir commented on LUCENE-2089: - bq. I don't see the [MIT] license on that publi

[jira] Commented: (LUCENE-2089) explore using automaton for fuzzyquery

2010-03-03 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2089?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12840557#action_12840557 ] Michael McCandless commented on LUCENE-2089: This is awesome progress Robert!!