$ 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の問題(遅かれ早かれ修正可能)か、それとも設計上の問題なのでしょうか?Clojureの実装はどれも早く開始できますか?
注:start-persistent-server-than-connect-to-itの回避策についてはすでに知っています。
私のシステム上のAOTのClojureのJARは、JVMの一つ – Ankur