Merge pull request #121 from Deraen/master

Add changelog entry for from-db-object perf improvement
This commit is contained in:
Michael Klishin 2015-10-09 14:52:47 +03:00
commit 47d20761c5

View file

@ -1,5 +1,14 @@
## Changes between 3.0.0 and 3.1.0
### Improved DBObject to Clojure Map conversion performance
New `from-db-object` implementation for `DBObject` avoids creation of an unnecessary
sequence and instead directly accesses `DBObject` instance in reduce. This should
offer performance improvement of about 20%. A performance test can be found
at [monger.test.stress-test](https://github.com/michaelklishin/monger/blob/master/test/monger/test/stress_test.clj).
Contributed by Juho Teperi.
### Authencation Function No Longer Ignores Credentials
In some cases Monger ignored provided credentials.