Correct change log

This commit is contained in:
Michael Klishin 2013-04-14 02:04:27 +04:00
parent bffb58cc1f
commit d5b0e2c8be

View file

@ -6,11 +6,12 @@
implementation that can use any database:
``` clojure
(require '[monger.core :as mg])
(require '[monger.cache :as cache])
(let [db (mg/get-db "altcache")
coll "cache_entries"
c (db-aware-monger-cache-factory db coll)]
c (cache/db-aware-monger-cache-factory db coll)]
(comment "This cache instance will use the altcache DB"))
```