We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
(def C (-> {:a 1 :b 2} (fifo-cache-factory :threshold 2) (ttl-cache-factory :ttl 5000))) ;; right away (assoc C :c 42) ;;=> {:b 2, :c 42} ;; wait 5 seconds (assoc C :d 138) ;;=> {:d 138}