-
Type: Task
-
Resolution: Done
-
Affects Version/s: None
-
Component/s: None
-
None
This pull request adds Factory.from_map_or_db, which will load previously instantiated documents from the identity map before instantiating a new document for a given id. In addition, this pull request changes criteria-based queries and relations to use this new method instead of Factory.from_db. This allows for statements like this to be true:
Person.find("1").object_id == Person.where(id:"1").first.object_id
This change makes the IdentityMap semantics less complicated, IMO.