1. 09 May, 2000 3 commits
  2. 05 May, 2000 2 commits
  3. 21 Apr, 2000 2 commits
  4. 20 Apr, 2000 2 commits
  5. 14 Apr, 2000 1 commit
    • Jim Fulton's avatar
      Restructured to use async socket code only. · e12ae67e
      Jim Fulton authored
      This reduced the amount of code and should
      make the next step, adding failure handling,
      much easier.
      
      Also changed invalidation protocol to be atomic
      (or close enough).
      e12ae67e
  6. 13 Apr, 2000 1 commit
  7. 12 Apr, 2000 1 commit
  8. 08 Apr, 2000 1 commit
  9. 06 Apr, 2000 1 commit
  10. 23 Mar, 2000 1 commit
  11. 22 Mar, 2000 3 commits
  12. 06 Mar, 2000 1 commit
  13. 11 Jan, 2000 1 commit
  14. 10 Dec, 1999 2 commits
    • Jim Fulton's avatar
      Fixed a bug in commiting or discarding versions. Some undone transactions · 43cd7d84
      Jim Fulton authored
      were not handled correctly.
      43cd7d84
    • Jim Fulton's avatar
      On systems where the fsync system call is available, we now call · a21ecf9e
      Jim Fulton authored
      fsync when commiting transactions to make sure that transaction
      data are written to physical storage immediately. There is circumstantial
      evidence that database corruption has been caused due to problems with
      delayed write of data after Zope has flushed transaction data.
      
      Added logic to avoid writing empty transactions. It's imaginable that
      some future application might want to write empty transactions to
      capture transaction meta data. If this ever becomes an issue, then
      this feature would have to be made optional.
      a21ecf9e
  15. 09 Dec, 1999 2 commits
    • Jim Fulton's avatar
      initial version · 98fa5f13
      Jim Fulton authored
      98fa5f13
    • Jim Fulton's avatar
      Added flush call in undo. · 518278be
      Jim Fulton authored
      Added utility code to recover corrupted databases. Note that
      the recover method is imperfect. It doesn't recover lost data. It
      just repairs the file so the lost data doesn't prevent startup.
      
      To run the recovery code:
      
        - cd lib/python
        - python ZODB/fsrecover.py ../../var/Data.fs
      518278be
  16. 07 Dec, 1999 1 commit
    • Jim Fulton's avatar
      The following scenario could lead to strange and serious errors: · 3680efa1
      Jim Fulton authored
        - Restart or pack Zope, causing an index to get written
      
        - Undo some transactions
      
        - Shutdown Zope ungracefully (e.g. kill)
      
      When Zope comes up, the index points to undone records for some
      objects. This can lead to all sorts of problems. :(
      
      To overcome this problem, we now remove the index after an
      undo.
      
      This increases the likelyhood that it will take longer to restart
      next time, but reduces the chance of a bad index.
      3680efa1
  17. 23 Nov, 1999 3 commits
  18. 16 Nov, 1999 12 commits