Reason for skipping AOT?

后端 未结 1 1715
无人共我
无人共我 2021-02-05 02:52

In many noir apps I have seen the below declaration. What is the purpose of skipping aot ? When to use it and when not to use it ? Any advantages / disadvantages ?



        
相关标签:
1条回答
  • 2021-02-05 03:44

    This isn't specific to noir but one scenario you might want to skip AOT for a given namespace is when deploying your code to a PaaS provider such as heroku.

    Heroku performs AOT compilation of your code by default so consider this snippet in your server.clj:

    (db/connect! (System/getenv "DB_URL"))
    
    (defn start [port]
      (run-jetty app {:port port :join? false :max-threads 100}))
    

    In principle this code seems harmless and will work locally regardless of it being AOT-compiled.

    However during compilation on heroku, the environment variable "DB_URL" isn't available yet so the connect! statement above will try to connect to nil and throw an exception.

    Skipping AOT compilation of this namespace is one way of preventing this.

    Another, and my preferred approach at the moment would be to change it slightly to this:

    (defn bootstrap! []
      (db/connect! (System/getenv "DB_URL")))
    
    (defn start [port]
      (bootstrap!)  
      (run-jetty app {:port port :join? false :max-threads 100}))
    

    That way it's a little clearer what your intention is and you avoid attempting a database connection during compilation.

    I learned this the hard way and documented it in this blog post.

    Hope this is useful.

    0 讨论(0)
提交回复
热议问题