db4o to preserve identity of objects. - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T01:42:26Zhttp://stackoverflow.com/feeds/question/911166http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/911166/db4o-to-preserve-identity-of-objects0db4o to preserve identity of objects.lbownik2009-05-26T15:03:02Z2009-10-13T11:07:33Z
<p>Is there a way to preserve an objest identity in db4o.</p>
<p>Suppose I store a BigDecimal in embedded db4o.</p>
<p>When I read it twice I get two distict objects with the same value (which is quite obvious).</p>
<p>Is there any setting to force db4o to cashe query sersults so that two querries would return reference to the same instance, or do I have to do it myself ?</p>
http://stackoverflow.com/questions/911166/db4o-to-preserve-identity-of-objects/1559558#15595580Answer by Goran for db4o to preserve identity of objects.Goran2009-10-13T11:07:33Z2009-10-13T11:07:33Z<p>Hi!</p>
<p>Db4o does use <a href="http://developer.db4o.com/Resources/view.aspx/Reference/Implementation%5FStrategies/IDs%5Fand%5FUUIDs" rel="nofollow">IDs and UUIDs</a> internally and you can access those if needed. Also worth reading is <a href="http://developer.db4o.com/Resources/view.aspx/Reference/Basic%5FConcepts/Object%5FIdentity/Unique%5FIdentity%5FConcept" rel="nofollow">this</a>.</p>