You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since Spark requires functions to be compiled in order to work, I wrote a little helper function that aids REPL development by recompiling the current namespace.
Not sure if this would fit in the project anywhere, but I found it useful for speeding up my workflow, particularly when connected to an nREPL from my editor. Calling (recompile) certainly beats booting up a new REPL and reconnecting.
The text was updated successfully, but these errors were encountered:
bucketh3ad
changed the title
Recompile helper function for REPL development
Recompile function for REPL development
Jul 12, 2015
Since Spark requires functions to be compiled in order to work, I wrote a little helper function that aids REPL development by recompiling the current namespace.
(defn recompile [] (binding [*compile-files* true] (require (symbol (str *ns*)) :reload-all)))
Not sure if this would fit in the project anywhere, but I found it useful for speeding up my workflow, particularly when connected to an nREPL from my editor. Calling
(recompile)
certainly beats booting up a new REPL and reconnecting.The text was updated successfully, but these errors were encountered: