1. 02 Apr, 2003 1 commit
    • Jeremy Hylton's avatar
      Restore cache behavior for unreferenced by recently used objects. · 19830020
      Jeremy Hylton authored
      The implementation is to make the reference in the cache "ring" a new
      reference rather than a borrowed reference.  It is the intent of the
      cache to keep N recently used objects in memory, regardless of whether
      they are currently referenced.  The goal is to avoid the cost of
      recreating the objects, based on the assumption that they are likely
      to be used again soon.
      19830020
  2. 01 Apr, 2003 11 commits
  3. 31 Mar, 2003 2 commits
    • Jeremy Hylton's avatar
      1f86dd15
    • Jeremy Hylton's avatar
      Fix several ref count bugs. · fd95c5af
      Jeremy Hylton authored
      Remove object_from_oid() which appeared to be mis-used about half the
      time.  Instead use std PyDict_GetItem() and incref only when
      necessary.
      
      Make sure an object's reference to its cache is decref'd when the
      object is deallocated.  This change seems to eliminate leaking pickle
      caches.
      
      Remaining mystery: Why do objects stay in the cache even when there
      are no references to them?
      fd95c5af
  4. 26 Mar, 2003 1 commit
  5. 25 Mar, 2003 2 commits
  6. 24 Mar, 2003 7 commits
  7. 21 Mar, 2003 1 commit
  8. 20 Mar, 2003 1 commit
    • Jeremy Hylton's avatar
      Change prepare() signature in IDataManager. · be351a5e
      Jeremy Hylton authored
      The manager should raise an exception in its prepare() method rather
      than returning a boolean to indicate failure.  Rationale: The txn
      manager can't raise a reasonable exception, because it doesn't know
      what the data manager couldn't prepare.
      be351a5e
  9. 17 Mar, 2003 10 commits
  10. 16 Mar, 2003 1 commit
  11. 13 Mar, 2003 1 commit
  12. 10 Mar, 2003 2 commits