Closed josevalim closed 1 year ago
Given the plugins are immutable, we can download and cache them somewhere global. So the idea is:
For the cache directory, we can use this (copied from bumblebee):
defp adbc_cache_dir() do if dir = System.get_env("ADBC_CACHE_DIR") do Path.expand(dir) else :filename.basedir(:user_cache, "adbc") end end
Given the plugins are immutable, we can download and cache them somewhere global. So the idea is:
For the cache directory, we can use this (copied from bumblebee):