You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Uwe Schindler (JIRA)" <ji...@apache.org> on 2011/01/26 08:44:43 UTC

[jira] Created: (LUCENE-2889) Remove @lucene.experimental from Numeric*

Remove @lucene.experimental from Numeric*
-----------------------------------------

                 Key: LUCENE-2889
                 URL: https://issues.apache.org/jira/browse/LUCENE-2889
             Project: Lucene - Java
          Issue Type: Task
          Components: Analysis, Search
            Reporter: Uwe Schindler
            Assignee: Uwe Schindler


NumericRangeQuery and NumericField are now there since 2.9. It is still marked as experimental. The API stabilized and there are no changes in the public parts (even in Lucene trunk no changes). Also lot's of people ask, if "experimental" means "unstable" in general, but it means only "unstable API".

I will remove the @lucene.experimental from Numeric* classes. NumericUtils* stays with @lucene.internal, as it is not intended for public use. Some people use it to make "TermQuery" on a numeric field, but this should be done using a NRQ with upper==lower and included=true, which does not affect scoring (applies also to Solr).

-- 
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: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org


[jira] Resolved: (LUCENE-2889) Remove @lucene.experimental from Numeric*

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

Uwe Schindler resolved LUCENE-2889.
-----------------------------------

    Resolution: Fixed

Committed trunk revision: 1063762
Committed 3.x revision: 1063766

> Remove @lucene.experimental from Numeric*
> -----------------------------------------
>
>                 Key: LUCENE-2889
>                 URL: https://issues.apache.org/jira/browse/LUCENE-2889
>             Project: Lucene - Java
>          Issue Type: Task
>          Components: Analysis, Search
>            Reporter: Uwe Schindler
>            Assignee: Uwe Schindler
>             Fix For: 3.1, 4.0
>
>         Attachments: LUCENE-2889.patch
>
>
> NumericRangeQuery and NumericField are now there since 2.9. It is still marked as experimental. The API stabilized and there are no changes in the public parts (even in Lucene trunk no changes). Also lot's of people ask, if "experimental" means "unstable" in general, but it means only "unstable API".
> I will remove the @lucene.experimental from Numeric* classes. NumericUtils* stays with @lucene.internal, as it is not intended for public use. Some people use it to make "TermQuery" on a numeric field, but this should be done using a NRQ with upper==lower and included=true, which does not affect scoring (applies also to Solr).

-- 
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: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org


[jira] Commented: (LUCENE-2889) Remove @lucene.experimental from Numeric*

Posted by "Simon Willnauer (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/LUCENE-2889?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12986882#action_12986882 ] 

Simon Willnauer commented on LUCENE-2889:
-----------------------------------------

+1 - go for it uwe

> Remove @lucene.experimental from Numeric*
> -----------------------------------------
>
>                 Key: LUCENE-2889
>                 URL: https://issues.apache.org/jira/browse/LUCENE-2889
>             Project: Lucene - Java
>          Issue Type: Task
>          Components: Analysis, Search
>            Reporter: Uwe Schindler
>            Assignee: Uwe Schindler
>             Fix For: 3.1, 4.0
>
>         Attachments: LUCENE-2889.patch
>
>
> NumericRangeQuery and NumericField are now there since 2.9. It is still marked as experimental. The API stabilized and there are no changes in the public parts (even in Lucene trunk no changes). Also lot's of people ask, if "experimental" means "unstable" in general, but it means only "unstable API".
> I will remove the @lucene.experimental from Numeric* classes. NumericUtils* stays with @lucene.internal, as it is not intended for public use. Some people use it to make "TermQuery" on a numeric field, but this should be done using a NRQ with upper==lower and included=true, which does not affect scoring (applies also to Solr).

-- 
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: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org


[jira] Updated: (LUCENE-2889) Remove @lucene.experimental from Numeric*

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

Uwe Schindler updated LUCENE-2889:
----------------------------------

    Attachment: LUCENE-2889.patch

Easy patch.

> Remove @lucene.experimental from Numeric*
> -----------------------------------------
>
>                 Key: LUCENE-2889
>                 URL: https://issues.apache.org/jira/browse/LUCENE-2889
>             Project: Lucene - Java
>          Issue Type: Task
>          Components: Analysis, Search
>            Reporter: Uwe Schindler
>            Assignee: Uwe Schindler
>             Fix For: 3.1, 4.0
>
>         Attachments: LUCENE-2889.patch
>
>
> NumericRangeQuery and NumericField are now there since 2.9. It is still marked as experimental. The API stabilized and there are no changes in the public parts (even in Lucene trunk no changes). Also lot's of people ask, if "experimental" means "unstable" in general, but it means only "unstable API".
> I will remove the @lucene.experimental from Numeric* classes. NumericUtils* stays with @lucene.internal, as it is not intended for public use. Some people use it to make "TermQuery" on a numeric field, but this should be done using a NRQ with upper==lower and included=true, which does not affect scoring (applies also to Solr).

-- 
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: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org


[jira] Updated: (LUCENE-2889) Remove @lucene.experimental from Numeric*

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

Uwe Schindler updated LUCENE-2889:
----------------------------------

    Fix Version/s: 4.0
                   3.1

> Remove @lucene.experimental from Numeric*
> -----------------------------------------
>
>                 Key: LUCENE-2889
>                 URL: https://issues.apache.org/jira/browse/LUCENE-2889
>             Project: Lucene - Java
>          Issue Type: Task
>          Components: Analysis, Search
>            Reporter: Uwe Schindler
>            Assignee: Uwe Schindler
>             Fix For: 3.1, 4.0
>
>
> NumericRangeQuery and NumericField are now there since 2.9. It is still marked as experimental. The API stabilized and there are no changes in the public parts (even in Lucene trunk no changes). Also lot's of people ask, if "experimental" means "unstable" in general, but it means only "unstable API".
> I will remove the @lucene.experimental from Numeric* classes. NumericUtils* stays with @lucene.internal, as it is not intended for public use. Some people use it to make "TermQuery" on a numeric field, but this should be done using a NRQ with upper==lower and included=true, which does not affect scoring (applies also to Solr).

-- 
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: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org