Clojure application startup performance

后端 未结 3 1477
灰色年华
灰色年华 2021-01-17 08:49

I have written a few small utility applications in Clojure that I compile into self-contained executable JAR files (\"uberjars\") using Maven and the maven-shade-plugin. The

3条回答
  •  悲哀的现实
    2021-01-17 08:51

    On the Clojure site there is a nice description of AOT compilation. This will already shave off some startup time.

    Edit: there have been some efforts to run Clojure programs on a persistent JVM, thus reducing the start-up time. Look-up jark + jvm. However the site seem to have disapeared :(

提交回复
热议问题