[jira] Commented: (LUCENE-1618) Allow setting the IndexWriter docstore to be a different directory

2009-05-08 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1618?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12707438#action_12707438 ] Michael McCandless commented on LUCENE-1618: I think if one is directly writin

[jira] Commented: (LUCENE-1618) Allow setting the IndexWriter docstore to be a different directory

2009-05-08 Thread Jason Rutherglen (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1618?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12707403#action_12707403 ] Jason Rutherglen commented on LUCENE-1618: -- One example of the use case is when I

[jira] Commented: (LUCENE-1631) CLONE -You cannot sort on fields that don't exist

2009-05-08 Thread Yonik Seeley (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1631?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12707384#action_12707384 ] Yonik Seeley commented on LUCENE-1631: -- This is only for the AUTO sort field type (wh

[jira] Updated: (LUCENE-1629) contrib intelligent Analyzer for Chinese

2009-05-08 Thread Xiaoping Gao (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1629?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Xiaoping Gao updated LUCENE-1629: - Attachment: LUCENE-1629-java1.4.patch new patch for java1.4, I have corrected the bug "java.uti

[jira] Updated: (LUCENE-1629) contrib intelligent Analyzer for Chinese

2009-05-08 Thread Xiaoping Gao (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1629?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Xiaoping Gao updated LUCENE-1629: - Attachment: (was: LUCENE-1629-java1.4.patch) > contrib intelligent Analyzer for Chinese > --

[jira] Commented: (LUCENE-1631) CLONE -You cannot sort on fields that don't exist

2009-05-08 Thread steve neo (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1631?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12707376#action_12707376 ] steve neo commented on LUCENE-1631: --- In my real project, I am using over multiple indexe

[jira] Updated: (LUCENE-1631) CLONE -You cannot sort on fields that don't exist

2009-05-08 Thread steve neo (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1631?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] steve neo updated LUCENE-1631: -- Description: I still get this error in 2.4.1 - if field does not exist in index, there is null

[jira] Created: (LUCENE-1631) CLONE -You cannot sort on fields that don't exist

2009-05-08 Thread steve neo (JIRA)
CLONE -You cannot sort on fields that don't exist - Key: LUCENE-1631 URL: https://issues.apache.org/jira/browse/LUCENE-1631 Project: Lucene - Java Issue Type: Bug Components: Search

[jira] Commented: (LUCENE-1618) Allow setting the IndexWriter docstore to be a different directory

2009-05-08 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1618?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12707284#action_12707284 ] Michael McCandless commented on LUCENE-1618: bq. Added fileExists checking in

[jira] Commented: (LUCENE-1313) Realtime Search

2009-05-08 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1313?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12707283#action_12707283 ] Michael McCandless commented on LUCENE-1313: {quote} Does IW.optimize and IW.e

Re: Sort on TermEnum

2009-05-08 Thread Federica Falini Data Management S.p.A
Title: Firma thanks, do you have an example of this ? Federica Earwin Burrfoot ha scritto: Isn't it better to have specially prepared sort fields? Like lowercased, if you want case-insensitive comparisons, or stripped of whitespace and punctuation, like I did once. That way you have more fl

[jira] Commented: (LUCENE-1629) contrib intelligent Analyzer for Chinese

2009-05-08 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1629?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12707280#action_12707280 ] Michael McCandless commented on LUCENE-1629: When I apply the patch and then r

[jira] Commented: (LUCENE-1629) contrib intelligent Analyzer for Chinese

2009-05-08 Thread Michael McCandless (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1629?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12707278#action_12707278 ] Michael McCandless commented on LUCENE-1629: bq. all the code working on java1

Re: Sort on TermEnum

2009-05-08 Thread Earwin Burrfoot
Isn't it better to have specially prepared sort fields? Like lowercased, if you want case-insensitive comparisons, or stripped of whitespace and punctuation, like I did once. That way you have more flexibility and also don't kill performance outright. On Fri, May 8, 2009 at 11:58, Federica Falini

Sort on TermEnum

2009-05-08 Thread Federica Falini Data Management S.p.A
Hi,  in Lucene 2.4.1 (as such in Lucene 2.2) the term enumeration is sorted case-sensitive: first capital and then small; For example,  this sort on TermEnum is wrong for human consumption: Annales Cafè Zucche cafe this is the correct sort in this case : Annales cafe Cafè Zucche In Lucene