Fork me on GitHub
#boot
<
2016-07-03
>
myguidingstar04:07:47

do you think Cljs compilation time can be improved by making use of ram disk fs (like tmpfs under Linuk)?

myguidingstar04:07:11

I'm thinking of ~/.boot/cache/tmp and target directories

juhoteperi08:07:58

Cljs compiler keeps the cache on memory, disk cache is used (or would be used) when Cljs compiler starts, in Boot's case the cache is always empty when starting a new process

myguidingstar11:07:56

@juhoteperi: that makes sense. I tried it today and found no difference. Many thanks

myguidingstar23:07:20

I have several builds to feed boot-cljs

myguidingstar23:07:22

however after the Boot pipeline started I want to dynamically disable some of them

myguidingstar23:07:16

and enable any of them again on the fly

myguidingstar23:07:34

I can achieve that by manually renaming .cljs.edn files

myguidingstar23:07:00

but I want to do that in the repl, too

myguidingstar23:07:31

how do I trigger a Boot pipeline rebuild from a connected repl?

myguidingstar23:07:33

another question: one way to share states between Boot builds is to put data in a file and read it. Is there another way, just from repl, like an atom?