This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-09-05
Channels
- # beginners (45)
- # boot (2)
- # cider (2)
- # cljs-experience (1)
- # cljsrn (6)
- # clojure (67)
- # clojure-brasil (1)
- # clojure-dusseldorf (47)
- # clojure-finland (7)
- # clojure-italy (81)
- # clojure-portugal (2)
- # clojure-russia (12)
- # clojure-sanfrancisco (1)
- # clojure-serbia (1)
- # clojure-spec (22)
- # clojure-uk (27)
- # clojurescript (49)
- # clojurewerkz (3)
- # code-reviews (3)
- # component (19)
- # core-async (3)
- # cursive (16)
- # events (7)
- # fulcro (20)
- # graphql (7)
- # immutant (1)
- # jobs (2)
- # juxt (44)
- # leiningen (7)
- # lumo (35)
- # onyx (31)
- # portkey (31)
- # portland-or (8)
- # random (1)
- # re-frame (82)
- # reagent (35)
- # sfcljs (1)
- # spacemacs (5)
- # specter (7)
- # unrepl (4)
- # yada (2)
Hi all!!! I have one question about profiles.
When i set :jvm-opts ["-Xmx3g" "-Xms1g"]
in my profile and start my app using java -Xmx=7g ...
the profiles overwrite start arguments or the start arguments override profiles?
if you run the java command, nothing in project.clj has any effect
other than the deps that were calculated to build your jar
if you didn’t set the Xmx as a java arg, you would get your OS default
Nice ty @noisesmith .
this also means you can’t write your code to rely on profiles of course - there’s really no such thing when running from a jar