Fork me on GitHub
#tools-deps
<
2019-09-02
>
Drew Verlee15:09:16

whats a short summery of what the .cpcache folder contains?

Alex Miller (Clojure team)16:09:39

.cp files (final classpaths) and .lib files (intermediate dep files)

Alex Miller (Clojure team)16:09:41

clj either uses the cached cp file or has to spin a separate jvm with tools.deps to compute the classpath

Alex Miller (Clojure team)16:09:41

It is truly a cache (key is a hash of a bunch of stuff) so it’s safe to rm it

Drew Verlee16:09:52

makes sense, thanks for the explanation Alex.