on win7 64bit
Microsoft Windows [Version 6.1.7601]

C:\Users\user>cd \1

C:\1>powershell
Windows PowerShell
Copyright (C) 2009 Microsoft Corporation. All rights reserved.

PS C:\1> Measure-Command {*lein version*}


Days              : 0
Hours             : 0
Minutes           : 0
Seconds           : 3
Milliseconds      : 562
Ticks             : 35624113
TotalDays         : 4.12316122685185E-05
TotalHours        : 0.000989558694444444
TotalMinutes      : 0.0593735216666667
TotalSeconds      : *3.56*24113
TotalMilliseconds : 3562.4113



PS C:\1> Measure-Command {*lein new someproj1*}


Days              : 0
Hours             : 0
Minutes           : 0
Seconds           : 4
Milliseconds      : 362
Ticks             : 43622473
TotalDays         : 5.04889733796296E-05
TotalHours        : 0.00121173536111111
TotalMinutes      : 0.0727041216666667
TotalSeconds      : *4.36*22473
TotalMilliseconds : 4362.2473



PS C:\1> cd .\someproj1
PS C:\1\someproj1> Measure-Command {*lein uberjar*}


Days              : 0
Hours             : 0
Minutes           : 0
Seconds           : 8
Milliseconds      : 461
Ticks             : 84613500
TotalDays         : 9.79322916666667E-05
TotalHours        : 0.002350375
TotalMinutes      : 0.1410225
TotalSeconds      : *8.4*6135
TotalMilliseconds : 8461.35



PS C:\1\someproj1> Measure-Command {*lein help*}


Days              : 0
Hours             : 0
Minutes           : 0
Seconds           : 12
Milliseconds      : 220
Ticks             : 122208485
TotalDays         : 0.000141445005787037
TotalHours        : 0.00339468013888889
TotalMinutes      : 0.203680808333333
TotalSeconds      : *12.22*08485
TotalMilliseconds : 12220.8485




On Wed, Feb 20, 2013 at 8:05 PM, Phil Hagelberg <p...@hagelb.org> wrote:

>
> Softaddicts writes:
>
> > SSD + fastest laptop in your price range ;)
> > lein2 help takes 12 seconds from start to back at command prompt...
>
> FWIW the help task is basically the worst case scenario for measuring
> startup time since it has to load every single task in order to get
> docstrings for them. If you just want to measure startup time, use `lein
> version` for Leiningen itself and `lein run -m clojure.main -e nil` for
> measuring Leiningen plus project boot.
>
> I get about 1.5s for Leiningen alone and just under 4s with a simple
> project on my 4-year-old laptop on Leiningen 2.0.0 with no additional
> tweaks. Of course, larger projects will take longer, but at that point
> it's orthogonal to Leiningen.
>
> -Phil
>
> --
> --
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with
> your first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
> "Clojure" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to clojure+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>


-- 
Please correct me if I'm wrong or incomplete,
even if you think I'll subconsciously hate it.

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to