You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Noble Paul (JIRA)" <ji...@apache.org> on 2013/06/13 16:22:25 UTC

[jira] [Updated] (SOLR-4221) Custom sharding

     [ https://issues.apache.org/jira/browse/SOLR-4221?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Noble Paul updated SOLR-4221:
-----------------------------

    Attachment: SOLR-4221.patch

Very interesting. This can go into a java tricks n tips book

{code:java}
  static Integer msgToStr(String val,Integer def ){
        return  val == null ? def : Integer.parseInt(val);
    }
{code}

compiles to

{code:java}
  static Integer msgToStr(String val,Integer def ){
        Integer.valueOf(return  val == null ? def : Integer.parseInt(val));
    }
{code}

So NPE , if 'val' is null

Should I open another bug or just commit it as a SOLR-4221

                
> Custom sharding
> ---------------
>
>                 Key: SOLR-4221
>                 URL: https://issues.apache.org/jira/browse/SOLR-4221
>             Project: Solr
>          Issue Type: New Feature
>            Reporter: Yonik Seeley
>            Assignee: Noble Paul
>         Attachments: SOLR-4221.patch
>
>
> Features to let users control everything about sharding/routing.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

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