Sha256: b01d4fa13298542e32497b5ad1d5ed966b43872ed47c4328db3652d0c89c58ea

Contents?: true

Size: 1.29 KB

Versions: 9

Compression:

Stored size: 1.29 KB

Contents

== Changelog

=== 0.4.2

* Added find_and_modify

=== 0.4.0

* Reverted 0.3.2 and replaced with better, more compatible improvements.
  Major speed increases are still here but it works as it did before.

=== 0.3.2

* implemented some optimizations that provide some major speed improvements
  for instantiating Mongoo::Base objects. Also added a :raw => true option
  to finds so that you can get back a raw hash.

=== 0.3.0

* refactored a bunch of connection and async related stuff. see README

=== 0.2.1

* Identity Map now also stores results from find.to_a, find.each and find.next

=== 0.2.0

* Depends on mongo gem >= 1.3.1


* Can no longer set Mongoo.config = {...}

* You can optionally set the collection name on a model now:

    class Person < Mongoo::Base
      collection_name "spacemen"
    end

* There is a new Identity Map feature available. It will only work when using find_one to
  find a specific id. You need to manually turn it on:

    Mongoo::IdentityMap.on!

  If using it in a web application like Rails be sure to flush the map after each request:

    Mongoo::IdentityMap.flush!

  The map is scoped to the current thread or fiber. You can also turn the map back off:

    Mongoo::IdentityMap.off!

  Inspired by: http://railstips.org/blog/archives/2010/02/21/mongomapper-07-identity-map/

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
mongoo-0.4.10 CHANGELOG
mongoo-0.4.9 CHANGELOG
mongoo-0.4.8 CHANGELOG
mongoo-0.4.7 CHANGELOG
mongoo-0.4.6 CHANGELOG
mongoo-0.4.5 CHANGELOG
mongoo-0.4.4 CHANGELOG
mongoo-0.4.3 CHANGELOG
mongoo-0.4.2 CHANGELOG