[jira] Commented: (LUCENE-2181) benchmark for collation

2010-01-10 Thread Steven Rowe (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2181?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12798590#action_12798590 ] Steven Rowe commented on LUCENE-2181: - {quote} Steven I also havent forgotten about yo

[jira] Commented: (LUCENE-2181) benchmark for collation

2010-01-10 Thread Steven Rowe (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2181?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12798589#action_12798589 ] Steven Rowe commented on LUCENE-2181: - I think NewCollationAnalyzerTask should be a li

[jira] Commented: (LUCENE-2181) benchmark for collation

2010-01-10 Thread Steven Rowe (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2181?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12798588#action_12798588 ] Steven Rowe commented on LUCENE-2181: - I just ran the contrib/benchmark tests, and I g

[jira] Commented: (LUCENE-2181) benchmark for collation

2010-01-10 Thread Steven Rowe (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2181?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12798584#action_12798584 ] Steven Rowe commented on LUCENE-2181: - Works for me: JAVA: java version "1.5.0_15" Ja

RE: "back_compat" folders in tags when I SVN update

2010-01-10 Thread George Aroush
Thanks for the clarification Chris. My key concern was that "tags" was becoming too crowded as-is, and important data is getting lost in the crowd. Looks like Uwe has a solution per https://issues.apache.org/jira/browse/LUCENE-2193. If this won't do, I like you suggestion of structuring "tags" p

[jira] Updated: (LUCENE-2181) benchmark for collation

2010-01-10 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2181?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir updated LUCENE-2181: Attachment: LUCENE-2181.patch ok, somehow it completely bypassed my brain you are using ReadTokens

[jira] Updated: (LUCENE-2181) benchmark for collation

2010-01-10 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2181?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir updated LUCENE-2181: Attachment: LUCENE-2181.patch fix a bug in testCollator/assertEqualCollation, so its actually test

[jira] Updated: (LUCENE-2181) benchmark for collation

2010-01-10 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2181?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir updated LUCENE-2181: Attachment: LUCENE-2181.patch ok i think we might be close to something committable now: * wrote t

Re: update doc by query

2010-01-10 Thread Sanne Grinovero
Even if it's not strictly needed anymore, could it improve performance? Right now I need to use commit() right after this dual operation to make sure no reader is ever going to miss it, but if it was atomic I could have avoided the commit and just trust that "at some time later" it will be auto-com

[jira] Resolved: (LUCENE-2200) Several final classes have non-overriding protected members

2010-01-10 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2200?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir resolved LUCENE-2200. - Resolution: Fixed Fix Version/s: 3.1 Thanks Steven! > Several final classes have non-ove

Re: update doc by query

2010-01-10 Thread Michael McCandless
I think there no particular demand... But: why not just separately delete by query, then add? Back when IW had autoCommit=true, it was compelling to have an atomic update, but now with only autoCommit=false, the app has full control over visibility to readers, so do we even need update-by-term an

[jira] Commented: (LUCENE-2202) PhraseQuery will not find hits containing stop words when StandardAnalyzer with 2.9 or 3.0 semantics is used

2010-01-10 Thread Philipp Nanz (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2202?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12798541#action_12798541 ] Philipp Nanz commented on LUCENE-2202: -- Hello Robert, many thanks for your help and s

[jira] Resolved: (LUCENE-2199) ShingleFilter skips over trie-shingles if outputUnigram is set to false

2010-01-10 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2199?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir resolved LUCENE-2199. - Resolution: Fixed > ShingleFilter skips over trie-shingles if outputUnigram is set to false > --

[jira] Updated: (LUCENE-2200) Several final classes have non-overriding protected members

2010-01-10 Thread Steven Rowe (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2200?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Steven Rowe updated LUCENE-2200: Attachment: LUCENE-2200.patch bq. Robert, when you commit this make sure you mark the Attributes i

Re: update doc by query

2010-01-10 Thread Sanne Grinovero
If the demand is the problem: I would really love that: in most scenarios a single term is not enough to identify a Document: I need at least two so I use usually remove-by-query first and then add again. This sometimes needs some application level lock to make the changes consistent. Sanne 2010/

[jira] Commented: (LUCENE-2181) benchmark for collation

2010-01-10 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2181?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12798527#action_12798527 ] Robert Muir commented on LUCENE-2181: - Steven I also havent forgotten about your other

update doc by query

2010-01-10 Thread Mark Miller
Any reason we don't offer update doc by query along with term? Its easy enough to implement in the same manner - is there some sort of gotchya with this, or is it just because there has been no demand yet? -- - Mark http://www.lucidimagination.com ---

[jira] Updated: (LUCENE-2199) ShingleFilter skips over trie-shingles if outputUnigram is set to false

2010-01-10 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2199?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir updated LUCENE-2199: Affects Version/s: (was: 2.4.1) (was: 2.4) Fix Version/s: 3.

[jira] Assigned: (LUCENE-2199) ShingleFilter skips over trie-shingles if outputUnigram is set to false

2010-01-10 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2199?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir reassigned LUCENE-2199: --- Assignee: Robert Muir (was: Simon Willnauer) > ShingleFilter skips over trie-shingles if ou

[jira] Commented: (LUCENE-2199) ShingleFilter skips over trie-shingles if outputUnigram is set to false

2010-01-10 Thread Simon Willnauer (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12798522#action_12798522 ] Simon Willnauer commented on LUCENE-2199: - I committed this in revision 897672 Rob

[jira] Commented: (LUCENE-2181) benchmark for collation

2010-01-10 Thread Steven Rowe (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2181?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12798520#action_12798520 ] Steven Rowe commented on LUCENE-2181: - bq. Steven, another idea: what if we simply add

[jira] Issue Comment Edited: (LUCENE-2181) benchmark for collation

2010-01-10 Thread Steven Rowe (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2181?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12798519#action_12798519 ] Steven Rowe edited comment on LUCENE-2181 at 1/10/10 5:56 PM: --

[jira] Commented: (LUCENE-2181) benchmark for collation

2010-01-10 Thread Steven Rowe (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2181?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12798519#action_12798519 ] Steven Rowe commented on LUCENE-2181: - bq. What about this per-field thing, what if in

[jira] Commented: (LUCENE-2197) StopFilter should not create a new CharArraySet if the given set is already an instance of CharArraySet

2010-01-10 Thread Simon Willnauer (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2197?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12798517#action_12798517 ] Simon Willnauer commented on LUCENE-2197: - Yonik, would you commit this issue plea

[jira] Commented: (LUCENE-2200) Several final classes have non-overriding protected members

2010-01-10 Thread Simon Willnauer (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2200?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12798516#action_12798516 ] Simon Willnauer commented on LUCENE-2200: - Robert, when you commit this make sure

[jira] Issue Comment Edited: (LUCENE-2181) benchmark for collation

2010-01-10 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2181?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12798514#action_12798514 ] Robert Muir edited comment on LUCENE-2181 at 1/10/10 5:35 PM: --

[jira] Commented: (LUCENE-2181) benchmark for collation

2010-01-10 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2181?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12798514#action_12798514 ] Robert Muir commented on LUCENE-2181: - Steven, another idea: what if we simply added t

[jira] Commented: (LUCENE-2181) benchmark for collation

2010-01-10 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2181?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12798510#action_12798510 ] Robert Muir commented on LUCENE-2181: - Steve ahh i was wondering about the per-field a

[jira] Commented: (LUCENE-2181) benchmark for collation

2010-01-10 Thread Steven Rowe (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2181?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12798508#action_12798508 ] Steven Rowe commented on LUCENE-2181: - Looks good. I like the way you've integrated i

[jira] Assigned: (LUCENE-2200) Several final classes have non-overriding protected members

2010-01-10 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2200?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir reassigned LUCENE-2200: --- Assignee: Robert Muir > Several final classes have non-overriding protected members > --

[jira] Commented: (LUCENE-2200) Several final classes have non-overriding protected members

2010-01-10 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2200?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12798495#action_12798495 ] Robert Muir commented on LUCENE-2200: - all tests pass and patch looks good to me. will

[jira] Commented: (LUCENE-2201) more performance improvements for snowball

2010-01-10 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2201?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12798478#action_12798478 ] Robert Muir commented on LUCENE-2201: - if no one objects I will commit this in a few d

[jira] Commented: (LUCENE-2199) ShingleFilter skips over trie-shingles if outputUnigram is set to false

2010-01-10 Thread Simon Willnauer (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12798474#action_12798474 ] Simon Willnauer commented on LUCENE-2199: - I plan to commit this in today or tomor

[jira] Commented: (LUCENE-2199) ShingleFilter skips over trie-shingles if outputUnigram is set to false

2010-01-10 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12798470#action_12798470 ] Robert Muir commented on LUCENE-2199: - simon, your fix makes sense to me... i think yo

[jira] Resolved: (LUCENE-2202) PhraseQuery will not find hits containing stop words when StandardAnalyzer with 2.9 or 3.0 semantics is used

2010-01-10 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2202?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir resolved LUCENE-2202. - Resolution: Invalid > PhraseQuery will not find hits containing stop words when StandardAnalyzer

[jira] Commented: (LUCENE-2202) PhraseQuery will not find hits containing stop words when StandardAnalyzer with 2.9 or 3.0 semantics is used

2010-01-10 Thread Robert Muir (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2202?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12798464#action_12798464 ] Robert Muir commented on LUCENE-2202: - Hello Philipp, the tokenize() method in this t

[jira] Updated: (LUCENE-2202) PhraseQuery will not find hits containing stop words when StandardAnalyzer with 2.9 or 3.0 semantics is used

2010-01-10 Thread Philipp Nanz (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2202?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Philipp Nanz updated LUCENE-2202: - Attachment: TestCase.java Added Junit4 testcase that exhibits the problem. > PhraseQuery will n

[jira] Created: (LUCENE-2202) PhraseQuery will not find hits containing stop words when StandardAnalyzer with 2.9 or 3.0 semantics is used

2010-01-10 Thread Philipp Nanz (JIRA)
PhraseQuery will not find hits containing stop words when StandardAnalyzer with 2.9 or 3.0 semantics is used Key: LUCENE-2202 URL: https://issues.apache.o