You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Mark Miller (JIRA)" <ji...@apache.org> on 2009/04/28 14:07:30 UTC

[jira] Created: (LUCENE-1621) deprecate term and getTerm in MultiTermQuery

deprecate term and getTerm in MultiTermQuery
--------------------------------------------

                 Key: LUCENE-1621
                 URL: https://issues.apache.org/jira/browse/LUCENE-1621
             Project: Lucene - Java
          Issue Type: Improvement
            Reporter: Mark Miller
            Assignee: Mark Miller
            Priority: Minor
             Fix For: 2.9


This means moving getTerm and term up to sub classes as appropriate and reimplementing equals, hashcode as appropriate in sub classes.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: java-dev-help@lucene.apache.org


[jira] Updated: (LUCENE-1621) deprecate term and getTerm in MultiTermQuery

Posted by "Mark Miller (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/LUCENE-1621?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mark Miller updated LUCENE-1621:
--------------------------------

    Attachment: LUCENE-1621.patch

a quick first pass at this

> deprecate term and getTerm in MultiTermQuery
> --------------------------------------------
>
>                 Key: LUCENE-1621
>                 URL: https://issues.apache.org/jira/browse/LUCENE-1621
>             Project: Lucene - Java
>          Issue Type: Improvement
>          Components: Search
>            Reporter: Mark Miller
>            Assignee: Mark Miller
>            Priority: Minor
>             Fix For: 2.9
>
>         Attachments: LUCENE-1621.patch
>
>
> This means moving getTerm and term up to sub classes as appropriate and reimplementing equals, hashcode as appropriate in sub classes.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: java-dev-help@lucene.apache.org


[jira] Updated: (LUCENE-1621) deprecate term and getTerm in MultiTermQuery

Posted by "Mark Miller (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/LUCENE-1621?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mark Miller updated LUCENE-1621:
--------------------------------

    Attachment: LUCENE-1621.patch

couple fixes regarding hashcode/equals

> deprecate term and getTerm in MultiTermQuery
> --------------------------------------------
>
>                 Key: LUCENE-1621
>                 URL: https://issues.apache.org/jira/browse/LUCENE-1621
>             Project: Lucene - Java
>          Issue Type: Improvement
>          Components: Search
>            Reporter: Mark Miller
>            Assignee: Mark Miller
>            Priority: Minor
>             Fix For: 2.9
>
>         Attachments: LUCENE-1621.patch, LUCENE-1621.patch
>
>
> This means moving getTerm and term up to sub classes as appropriate and reimplementing equals, hashcode as appropriate in sub classes.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: java-dev-help@lucene.apache.org


[jira] Commented: (LUCENE-1621) deprecate term and getTerm in MultiTermQuery

Posted by "Michael McCandless (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/LUCENE-1621?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12704142#action_12704142 ] 

Michael McCandless commented on LUCENE-1621:
--------------------------------------------

Patch looks good on read through!

> deprecate term and getTerm in MultiTermQuery
> --------------------------------------------
>
>                 Key: LUCENE-1621
>                 URL: https://issues.apache.org/jira/browse/LUCENE-1621
>             Project: Lucene - Java
>          Issue Type: Improvement
>          Components: Search
>            Reporter: Mark Miller
>            Assignee: Mark Miller
>            Priority: Minor
>             Fix For: 2.9
>
>         Attachments: LUCENE-1621.patch
>
>
> This means moving getTerm and term up to sub classes as appropriate and reimplementing equals, hashcode as appropriate in sub classes.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: java-dev-help@lucene.apache.org


[jira] Commented: (LUCENE-1621) deprecate term and getTerm in MultiTermQuery

Posted by "Mark Harwood (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/LUCENE-1621?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12703733#action_12703733 ] 

Mark Harwood commented on LUCENE-1621:
--------------------------------------

While we're poking around in this area I'd like to point out the long-standing open issue in LUCENE-329.

Matching "Smyth" over "Smith" when doing a search for "Smith~" is just plain broken but this is what I see all the time with FuzzyQuery and it's default approach to IDF. I think we need to take the sort of logic in contrib's FuzzyLikeThisQuery to address this. 

> deprecate term and getTerm in MultiTermQuery
> --------------------------------------------
>
>                 Key: LUCENE-1621
>                 URL: https://issues.apache.org/jira/browse/LUCENE-1621
>             Project: Lucene - Java
>          Issue Type: Improvement
>          Components: Search
>            Reporter: Mark Miller
>            Assignee: Mark Miller
>            Priority: Minor
>             Fix For: 2.9
>
>         Attachments: LUCENE-1621.patch
>
>
> This means moving getTerm and term up to sub classes as appropriate and reimplementing equals, hashcode as appropriate in sub classes.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: java-dev-help@lucene.apache.org


[jira] Updated: (LUCENE-1621) deprecate term and getTerm in MultiTermQuery

Posted by "Mark Miller (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/LUCENE-1621?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mark Miller updated LUCENE-1621:
--------------------------------

    Component/s: Search

> deprecate term and getTerm in MultiTermQuery
> --------------------------------------------
>
>                 Key: LUCENE-1621
>                 URL: https://issues.apache.org/jira/browse/LUCENE-1621
>             Project: Lucene - Java
>          Issue Type: Improvement
>          Components: Search
>            Reporter: Mark Miller
>            Assignee: Mark Miller
>            Priority: Minor
>             Fix For: 2.9
>
>         Attachments: LUCENE-1621.patch
>
>
> This means moving getTerm and term up to sub classes as appropriate and reimplementing equals, hashcode as appropriate in sub classes.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: java-dev-help@lucene.apache.org


[jira] Resolved: (LUCENE-1621) deprecate term and getTerm in MultiTermQuery

Posted by "Mark Miller (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/LUCENE-1621?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mark Miller resolved LUCENE-1621.
---------------------------------

    Resolution: Fixed

> deprecate term and getTerm in MultiTermQuery
> --------------------------------------------
>
>                 Key: LUCENE-1621
>                 URL: https://issues.apache.org/jira/browse/LUCENE-1621
>             Project: Lucene - Java
>          Issue Type: Improvement
>          Components: Search
>            Reporter: Mark Miller
>            Assignee: Mark Miller
>            Priority: Minor
>             Fix For: 2.9
>
>         Attachments: LUCENE-1621.patch, LUCENE-1621.patch
>
>
> This means moving getTerm and term up to sub classes as appropriate and reimplementing equals, hashcode as appropriate in sub classes.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: java-dev-help@lucene.apache.org