|
|
|
|
|
by SevereOverfl0w
3107 days ago
|
|
Have you tried the new clj command line tool from Clojure themselves? $ time clj -e '(System/exit 0)'
clj -e '(System/exit 0)' 1.60s user 0.07s system 198% cpu 0.839 total
It takes about 2 seconds to start for me.In this case I suspect cursive is fast because: * You have a JVM loaded in the form of IntelliJ
* You only need to start Clojure inside that JVM (which is reduced from the time clj takes!) So 1 second is a reasonable time from IntelliJ=>Clojure. 2 seconds is reasonable for Nothing=>Clojure. |
|
So the actual time was 0.839s.
Which means Clojure 1.9 on your computer boots and shutdowns its repl in under a second.