Re: Chestnut memory usage

2014-10-14 Thread Timothy Washington
I created my own browser-repl component (using austin). And that definitely consumed a lot of memory. I haven't used Chestnut. But I'm guessing it's browser-repl implementation (in src/clj/chestnut/dev.clj

Re: Chestnut memory usage

2014-10-13 Thread David Nolen
You can set explicit JVM memory settings. I'm also not convinced that Chestnut's strategy of triggering CLJS compilation on (run) is a good one. In anycase Chestnut's Github Issues is the right place to bring this up. David On Mon, Oct 13, 2014 at 2:19 PM, gvim wrote: > I've just setup a `lein n

Re: Chestnut memory usage

2014-10-13 Thread Andy Fingerhut
You may want to be more explicit about dependencies you've added to your project.clj file, or what the contents of your ~/.lein/profiles.clj file is. (run) an (browser-repl) throw exceptions as being undefined if your ~/.lein/profiles.clj is empty, and project.clj has its default contents. Andy

Chestnut memory usage

2014-10-13 Thread gvim
I've just setup a `lein new chestnut` project and after: $ lein repl (run) (browser-repl) Activity Monitor shows 3 Java processes: main: 953Mb main: 747Mb java: 634Mb Over 2.3Gb RAM just to get a CLJS browser repl? I haven't even added Lighttable into the mix or IntelliJ :( gvim