What is the preferred way of reloading functions defined in a Clojure file without having to restart the REPL. Right now, in order to use the updated file I have to:
- edit
src/foo/bar.clj - close the REPL
- open the REPL
(load-file "src/foo/bar.clj")(use 'foo.bar)
In addition, (use 'foo.bar :reload-all) does not result in required effect, which is evaluating the modified bodies of functions and returning new values, instead of behaving as the source haven't changed at all.
(use 'foo.bar :reload-all)has always worked fine for me. Also,(load-file)should never be necessary if you have your classpath set up right. What is the "required effect" you're not getting? – Dave Ray Oct 5 '11 at 12:49bar.cljdetailing on the "required effect". – Sridhar Ratnakumar Oct 5 '11 at 17:41(defn f [] 1)and I changed its definition to(defn f [] 2), it seemed to me that after I issue(use 'foo.bar :reload-all)and call theffunction it should return 2, not 1. Unfortunately it doesn't work that way for me and every time I change the body of function I have to restart the REPL. – insane Oct 5 '11 at 19:33