$ time java -jar clojure-1.4.0.jar -e '(println "Hello world")'
Hello world
real 0m4.586s
$ time python clojure.py -c '(py/print "Hello world")'
real 0m14.690s
$ time mono Clojure.Main.exe -e '(println "hello world")'
hello world
real 0m4.843s
/* clojure-metal is not tested due to not being written at the moment */
Perl や Python スクリプトを実行するときのように、Clojure の起動時間が短くなることはありますか? 起動時間が遅いのは、基礎となるフレームワークまたは Clojure の問題 (遅かれ早かれ修正される可能性があります) によるものですか、それとも設計によるものですか?
注: start-persistent-server-than-connect-to-it の回避策については既に知っています。