From d5b0e2c8be7506c63904d910865085e40e8e8596 Mon Sep 17 00:00:00 2001 From: Michael Klishin Date: Sun, 14 Apr 2013 02:04:27 +0400 Subject: [PATCH] Correct change log --- ChangeLog.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index b35e50d..c4e585a 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -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")) ```