You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Jason van Zyl (JIRA)" <ji...@codehaus.org> on 2007/02/19 19:10:52 UTC

[jira] Created: (MNG-2836) Remove all optimizations so we can get a solid baseline and measure improvements

Remove all optimizations so we can get a solid baseline and measure improvements
--------------------------------------------------------------------------------

                 Key: MNG-2836
                 URL: http://jira.codehaus.org/browse/MNG-2836
             Project: Maven 2
          Issue Type: Task
    Affects Versions: 2.1-alpha-1
            Reporter: Jason van Zyl


I would like to remove all optimizations from the core, and then look for ways to improve after we have benchmarked the baseline.

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

        

[jira] Commented: (MNG-2836) Remove all optimizations so we can get a solid baseline and measure improvements

Posted by "Jason van Zyl (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MNG-2836?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_88072 ] 

Jason van Zyl commented on MNG-2836:
------------------------------------

Why does it come into play in artifact resolution? I can't remember and I will take a look but that cache is to link up projects in a reactor to use compile classes directly so what is happening that makes this required for artifact resolution? This is strictly for in situ work. Something smells funny if this is required for artifact resolution.

> Remove all optimizations so we can get a solid baseline and measure improvements
> --------------------------------------------------------------------------------
>
>                 Key: MNG-2836
>                 URL: http://jira.codehaus.org/browse/MNG-2836
>             Project: Maven 2
>          Issue Type: Task
>    Affects Versions: 2.1-alpha-1
>            Reporter: Jason van Zyl
>             Fix For: 2.1-alpha-1
>
>
> I would like to remove all optimizations from the core, and then look for ways to improve after we have benchmarked the baseline.

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

        

[jira] Commented: (MNG-2836) Remove all optimizations so we can get a solid baseline and measure improvements

Posted by "John Casey (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MNG-2836?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_88069 ] 

John Casey commented on MNG-2836:
---------------------------------

I've externalize the project and POM-file caching from the project builder, so it can be referenced during model-lineage building and artifact resolution...so, the project-builder itself doesn't have a cache any longer per se.

However, the reactor cannot function correctly when there are project interdependencies unless there is some sort of cache for MavenProject instances.

The cache that's used now is tied to the current thread and its children via InheritableThreadLocal, so individual build threads run through the embedder should not interfere with one another.

> Remove all optimizations so we can get a solid baseline and measure improvements
> --------------------------------------------------------------------------------
>
>                 Key: MNG-2836
>                 URL: http://jira.codehaus.org/browse/MNG-2836
>             Project: Maven 2
>          Issue Type: Task
>    Affects Versions: 2.1-alpha-1
>            Reporter: Jason van Zyl
>             Fix For: 2.1-alpha-1
>
>
> I would like to remove all optimizations from the core, and then look for ways to improve after we have benchmarked the baseline.

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

        

[jira] Closed: (MNG-2836) Remove all optimizations so we can get a solid baseline and measure improvements

Posted by "Jason van Zyl (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-2836?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jason van Zyl closed MNG-2836.
------------------------------

    Resolution: Fixed

The project builder, plugin instances (class realms) in the plugin manager, and in artifact resolution but we're deal with all of these individually.

> Remove all optimizations so we can get a solid baseline and measure improvements
> --------------------------------------------------------------------------------
>
>                 Key: MNG-2836
>                 URL: http://jira.codehaus.org/browse/MNG-2836
>             Project: Maven 2
>          Issue Type: Task
>          Components: General
>    Affects Versions: 2.1-alpha-1
>            Reporter: Jason van Zyl
>             Fix For: 2.1-alpha-1
>
>
> I would like to remove all optimizations from the core, and then look for ways to improve after we have benchmarked the baseline.

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

        

[jira] Updated: (MNG-2836) Remove all optimizations so we can get a solid baseline and measure improvements

Posted by "Jason van Zyl (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-2836?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jason van Zyl updated MNG-2836:
-------------------------------

    Fix Version/s: 2.1-alpha-1

> Remove all optimizations so we can get a solid baseline and measure improvements
> --------------------------------------------------------------------------------
>
>                 Key: MNG-2836
>                 URL: http://jira.codehaus.org/browse/MNG-2836
>             Project: Maven 2
>          Issue Type: Task
>    Affects Versions: 2.1-alpha-1
>            Reporter: Jason van Zyl
>             Fix For: 2.1-alpha-1
>
>
> I would like to remove all optimizations from the core, and then look for ways to improve after we have benchmarked the baseline.

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

        

[jira] Updated: (MNG-2836) Remove all optimizations so we can get a solid baseline and measure improvements

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-2836?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Brett Porter updated MNG-2836:
------------------------------

    Component/s: General

I can't think of any other than the project builder, so you can probably close this

> Remove all optimizations so we can get a solid baseline and measure improvements
> --------------------------------------------------------------------------------
>
>                 Key: MNG-2836
>                 URL: http://jira.codehaus.org/browse/MNG-2836
>             Project: Maven 2
>          Issue Type: Task
>          Components: General
>    Affects Versions: 2.1-alpha-1
>            Reporter: Jason van Zyl
>             Fix For: 2.1-alpha-1
>
>
> I would like to remove all optimizations from the core, and then look for ways to improve after we have benchmarked the baseline.

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