diff --git a/src/taoensso/nippy.clj b/src/taoensso/nippy.clj index 2846b66..465ab97 100644 --- a/src/taoensso/nippy.clj +++ b/src/taoensso/nippy.clj @@ -709,10 +709,10 @@ ;;;; Caching ; Experimental (def ^:dynamic ^:private *cache_* "{ }" nil) -(defmacro ^:private with-cache [& body] - `(binding [*cache_* (atom nil)] ~@body)) +;; (defmacro ^:private with-cache [& body] +;; `(binding [*cache_* (atom nil)] ~@body)) -;; (defmacro ^:private with-cache [& body] `(do ~@body)) ; Disable +(defmacro ^:private with-cache [& body] `(do ~@body)) ; Disable (defrecord CacheWrapped [value]) (defn cache "Experimental!" [x]