Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-01-03 | Update copyright year | Boris Kolpackov | 1 | -1/+1 | |
2016-04-04 | Add _has_cache() custom session interface, use in OLV implementation | Boris Kolpackov | 1 | -0/+3 | |
2015-02-06 | Update copyright | Boris Kolpackov | 1 | -1/+1 | |
2014-06-23 | Fix typo in comment | Boris Kolpackov | 1 | -1/+1 | |
2013-02-12 | Don't use uninitialized iterator on the rhs of assignment2.2.0 | Boris Kolpackov | 1 | -0/+11 | |
2013-02-09 | Update copyright year | Boris Kolpackov | 1 | -1/+1 | |
2013-01-20 | Add cache_ suffix to session cache functions | Boris Kolpackov | 1 | -14/+15 | |
This way they won't conflict with other functions (e.g., delayed database operations) that may have the same names. | |||||
2013-01-18 | Add support for post-commit/rollback callbacks | Boris Kolpackov | 1 | -10/+17 | |
New test: common/transaction/callback. | |||||
2013-01-16 | Make session cache management functions static, add notifications | Boris Kolpackov | 1 | -21/+43 | |
2013-01-16 | Implement two-phase session insertion | Boris Kolpackov | 1 | -0/+139 | |
On the first step an uninitialized object is inserted into the cache as before (this is necessary to handle recursive loading). The second step is to notify the session that the object has been initialized. On this second step the session can perform change tracking preparations, such as make a copy of the object or reset the modification flag. New test: common/session/custom (implements a custom session that uses copies to track changes). |