$ 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 */
Clojure 的启动时间是否可以像我运行 Perl 或 Python 脚本时那样少?启动时间慢是底层框架或 Clojure 的问题(迟早可以修复)还是设计使然?
注意:我已经知道 start-persistent-server-than-connect-to-it 解决方法。