From caafed81f83d82e39387554a8a1a32d424773031 Mon Sep 17 00:00:00 2001 From: "Michael S. Klishin" Date: Wed, 11 Apr 2012 21:06:21 +0400 Subject: [PATCH] Change log update --- ChangeLog.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index b01885c..569cc8a 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,20 @@ ## Changes between 1.0.0-beta4 and 1.0.0-beta5 -No changes yet. +### clojure.core.cache integration + +`monger.cache` is a new namespace for various cache implementations that adhere to the [clojure.core.cache](github.com/clojure/core.cache) `CacheProtocol` protocol +and sit on top of MongoDB + + +### Clojure symbols now can be serialized + +Monger now supports serialization for all classes that implement `clojure.lang.Named`, not just keywords. + + +### Improved serialization performance + +Thanks to faster paths for serialization of strings and dates (java.util.Date), mean time to insert 100,000 documents went down from +about 1.7 seconds to about 0.5 seconds.