[jboss-jira] [JBoss JIRA] Resolved: (JBREM-1235) Avoid excessive calls to InetAddress.getLocalHost() [Clone of JBREM-1234]

Ron Sigal (JIRA) jira-events at lists.jboss.org
Wed Aug 4 11:09:49 EDT 2010


     [ https://jira.jboss.org/browse/JBREM-1235?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ron Sigal resolved JBREM-1235.
------------------------------

    Resolution: Done


There do not seem to be any hudson test failures related to this issue.

> Avoid excessive calls to InetAddress.getLocalHost() [Clone of JBREM-1234]
> -------------------------------------------------------------------------
>
>                 Key: JBREM-1235
>                 URL: https://jira.jboss.org/browse/JBREM-1235
>             Project: JBoss Remoting
>          Issue Type: Quality Risk
>      Security Level: Public(Everyone can see) 
>    Affects Versions: 2.2.3.SP2
>            Reporter: Ron Sigal
>            Assignee: Ron Sigal
>             Fix For: 2.2.3.SP3
>
>
> From JBPAPP-4617 "Possible performance issue in Remoting":
> JMS remote connections that are used locally result in a lot of calls to InetAddress.getLocalHost() which for some reason is slow. 
> Why not:
>    private static final InetAddress LOCAL_HOST;
>    static
>    {
>       try
>       {
>          LOCAL_HOST = InetAddress.getLocalHost();
>       }
>       catch (UnknownHostException e)
>       {
>          throw new ExceptionInInitializerError(e);
>       }
>    }
>    private static InetAddress getLocalHost() throws UnknownHostException
>    {
>       return LOCAL_HOST;
>    }
> Which is roughly 1000x faster. 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the jboss-jira mailing list