Re: I need to share how to improve maven's performance

2010-08-23 Thread kristian
have a look at some tips how to improve startup time for jruby and some of it holds true for maven as well: http://blog.headius.com/2010/03/jruby-startup-time-tips.html with regards, Kristian 2010/8/23 Martin Schayna : > On 08/23/2010 10:55 AM, Baptiste MATHUS wrote: >> >>    - Then for Linux o

Re: I need to share how to improve maven's performance

2010-08-23 Thread Martin Schayna
On 08/23/2010 10:55 AM, Baptiste MATHUS wrote: - Then for Linux or other platforms, with current typical machines, it's very often defaulting to Server VM. But it can vary, and is precisely explained in the link Hervé put (more directly, see here : http://www.oracle.com/techn

Re: I need to share how to improve maven's performance

2010-08-23 Thread Baptiste MATHUS
To sum up: - Maven's JVM under 32-bits windows is not concerned. Hotspot always defaults to client vm under Windows. - Then for Linux or other platforms, with current typical machines, it's very often defaulting to Server VM. But it can vary, and is precisely explained in the link H

Re: I need to share how to improve maven's performance

2010-08-23 Thread rpomeroy
Jason van Zyl-2 wrote: > > Sweet. We can look at the various platforms and see if we can apply this > option across the board. Even if it's only for linux we can add it there. > > On Aug 19, 2010, at 9:06 AM, kristian wrote: > >> hi, > snip... > So can someone explain exactly what this flag

Re: I need to share how to improve maven's performance

2010-08-21 Thread Hervé BOUTEMY
here are some explanations: [1] and [2] [1] http://www.oracle.com/technetwork/java/hotspotfaq-138619.html#compiler_default [2] http://www.oracle.com/technetwork/java/ergo5-140223.html Le jeudi 19 août 2010, Jason van Zyl a écrit : > Sweet. We can look at the various platforms and see if we can

Re: I need to share how to improve maven's performance

2010-08-19 Thread Jason van Zyl
Sweet. We can look at the various platforms and see if we can apply this option across the board. Even if it's only for linux we can add it there. On Aug 19, 2010, at 9:06 AM, kristian wrote: > hi, > > since I found out how to improve performance of maven3 significantly > on my linux box, I tho

I need to share how to improve maven's performance

2010-08-19 Thread kristian
hi, since I found out how to improve performance of maven3 significantly on my linux box, I thought I need to share this: just set $ export MAVEN_OPTS=-client see a little "benchmark" http://gist.github.com/538194 the improvement remains even for longer maven runs. regards, Kristian -