You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by "Maria Fedotova (JIRA)" <ji...@apache.org> on 2015/05/14 16:54:00 UTC

[jira] [Created] (TAP5-2478) Create getIfExists in SessionApplicationStatePersistenceStrategy

Maria Fedotova created TAP5-2478:
------------------------------------

             Summary: Create getIfExists in SessionApplicationStatePersistenceStrategy
                 Key: TAP5-2478
                 URL: https://issues.apache.org/jira/browse/TAP5-2478
             Project: Tapestry 5
          Issue Type: Improvement
            Reporter: Maria Fedotova


Instead of this code
{code}
public <T> T getIfExists(Class<T> ssoClass)
    {
        ApplicationStateAdapter<T> adapter = getAdapter(ssoClass);

        return adapter.exists() ? adapter.getOrCreate() : null;
    }
{code}
I've create function getIfExists
{code}
    public <T> T getIfExists(Class<T> ssoClass)
    {

        return getAdapter(ssoClass).getIfExists();
    }
{code}
This patch incresed time per request on ~7% (from 24 to 26)
Thank [~mihasik] for the idea.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)