Reduce memory consumption in development

541 Views Asked by At

When I'm developing my project I have 3+ jvm instances running.

  • $ lein garden auto
  • $ lein cljsbuild auto
  • $ lein datomic start
  • cider repl
  • cider brepl

With firefox open for a few days I get pretty close to maxing out my 8gb of ram. How can I reduce memory consumption?

1

There are 1 best solutions below

0
On

while invoking the JVM, you could set the maximum size to be used

e.g -Xmx1024m -Xms1024m would use only 1GB of ram

Hope it helps regards