|
|
|
|
|
by juliangregorian
4021 days ago
|
|
Sure wish my JVM started in 40ms. Here's ruby: $ time ruby -e "puts 'hello world'"
> hello world
>
> real 0m0.076s
> user 0m0.029s
> sys 0m0.017s
And here's jruby: $ time ruby -e "puts 'hello world'"
> hello world
>
> real 0m1.161s
> user 0m2.050s
> sys 0m0.093s
|
|
Here's executing an assembly (über-jar) I wrote in Scala:
That's basically just `java -jar couch-utils.jar`.A few hundred ms on my 1.2GHz MacBook. And this includes a bunch of Akka Actors.