Re: ANN Drip: A fast JVM launcher

2013-01-23 Thread Tassilo Horn
Omer Iqbal writes: Hi Omer, > I tried the same on a ubuntu setup. Same issue as the rest I believe. :( > time drip -cp ~/.m2/repository/org/clojure/clojure/1.4.0/clojure-1.4.0.jar > clojure.main -e "(reduce + (range 100))" > 4950 > > real 0m1.065s > user 0m1.420s > sys 0m0.068s Keep in mind th

Re: ANN Drip: A fast JVM launcher

2013-01-23 Thread Omer Iqbal
I tried the same on a ubuntu setup. Same issue as the rest I believe. :( time drip -cp ~/.m2/repository/org/clojure/clojure/1.4.0/clojure-1.4.0.jar clojure.main -e "(reduce + (range 100))" 4950 real 0m1.065s user 0m1.420s sys 0m0.068s time java -cp ~/.m2/repository/org/clojure/clojure/1.4.0/cloj

Re: ANN Drip: A fast JVM launcher

2013-01-23 Thread Jack Moffitt
There was a bug that prevented drip from working with preview10. That's been fixed. Then for a while the drip JAR was distributed as compiled by Java 7, which failed silently when run on older JVMs. That's also been fixed now. I've been using it successfully for the last few days now. So if you g

Re: ANN Drip: A fast JVM launcher

2013-01-23 Thread Chris Altman
I'm getting the same behavior. Has there been any action on this? On Monday, September 17, 2012 11:12:20 AM UTC-4, Gary Johnson wrote: > > I'm getting the same multiple JVM starting behavior on Arch Linux using > lein 2.0.0-preview10 and drip 0.1.7. Hmm... > > > On Monday, September 17, 2012 2

Re: ANN Drip: A fast JVM launcher

2012-09-17 Thread Gary Johnson
I'm getting the same multiple JVM starting behavior on Arch Linux using lein 2.0.0-preview10 and drip 0.1.7. Hmm... On Monday, September 17, 2012 2:57:00 AM UTC-4, Tassilo Horn wrote: > > Denis Labaye > writes: > > >> I am still seeing a new JVM being started every drip run. I am > >> testing

Re: ANN Drip: A fast JVM launcher

2012-09-16 Thread Tassilo Horn
Denis Labaye writes: >> I am still seeing a new JVM being started every drip run. I am >> testing Drip 0.1.7 with Lein 2 by running lein test 5 times in a row >> with LEIN_JAVA_CMD=drip in ~/.lein/leinrc, OS X, JDK 7. > > No multiple JVM started for me (at least in my trivial tests) > > drip 0.1.

Re: ANN Drip: A fast JVM launcher

2012-09-16 Thread Denis Labaye
On Sun, Sep 16, 2012 at 8:59 PM, Michael Klishin < michael.s.klis...@gmail.com> wrote: > Denis Labaye: > > After the bug fix on ubuntu: >> >> denis@zeus:~/.m2$ time drip -cp ./repository/org/clojure/** >> clojure/1.4.0/clojure-1.4.0.**jar clojure.main -e "(reduce + (range >> 100))" >> 4950 >> >> r

Re: ANN Drip: A fast JVM launcher

2012-09-16 Thread Michael Klishin
Denis Labaye: After the bug fix on ubuntu: > > denis@zeus:~/.m2$ time drip -cp > ./repository/org/clojure/clojure/1.4.0/clojure-1.4.0.jar clojure.main -e > "(reduce + (range 100))" > 4950 > > real0m0.123s > user0m0.032s > sys 0m0.016s > denis@zeus:~/.m2$ time java -cp > ./repositor

Re: ANN Drip: A fast JVM launcher

2012-09-16 Thread Denis Labaye
After the bug fix on ubuntu: denis@zeus:~/.m2$ time drip -cp ./repository/org/clojure/clojure/1.4.0/clojure-1.4.0.jar clojure.main -e "(reduce + (range 100))" 4950 real0m0.123s user0m0.032s sys 0m0.016s denis@zeus:~/.m2$ time java -cp ./repository/org/clojure/clojure/1.4.0/clojure-1.4

Re: ANN Drip: A fast JVM launcher

2012-09-13 Thread Jack Moffitt
>> I did just that, but I don't get any speedup with leiningen. All I can >> see is that after every leiningen command, "drip ps" shows one process >> more. For example: > > This is also happening for me. Is there some way to configure drip to > ignore certain arguments? I added a way to specify

Re: ANN Drip: A fast JVM launcher

2012-09-13 Thread Jack Moffitt
> I did just that, but I don't get any speedup with leiningen. All I can > see is that after every leiningen command, "drip ps" shows one process > more. For example: This is also happening for me. Is there some way to configure drip to ignore certain arguments? jack. -- You received this mes

Re: ANN Drip: A fast JVM launcher

2012-09-13 Thread Tassilo Horn
Justin Balthrop writes: Hi Justin, > Once you've installed drip, setting up Leiningen to use it just > requires adding the following to ~/.lein/leinrc: > > LEIN_JAVA_CMD=${LEIN_JAVA_CMD-drip} I did just that, but I don't get any speedup with leiningen. All I can see is that after every leining

Re: ANN Drip: A fast JVM launcher

2012-09-10 Thread Haim Ashkenazi
Hi I seem to have a problem running it with leiningen: After setting LEIN_JAVA_CMD I run 'lein test' 3 times and 'lein repl' 2 times. Here's the output of 'drip ps': 37826 org.flatland.drip.Main clojure.main /Users/haim/.drip/0.1.4/7f5d7985a3c16a2f30c1614767d09d71c419b13e/37801-1 -XX:+TieredComp

ANN Drip: A fast JVM launcher

2012-09-10 Thread Justin Balthrop
Drip is a drop in replacement for the 'java' command that provides faster startup times. It does this by keeping a fresh JVM spun up in reserve with the correct classpath and other JVM options so you can quickly connect and use it when needed, then throw it away. Drip works with Clojure and Lei