in reply to OO Perl & RDBMS Strategy Question

I'm curious as to how people actually implement these systems in the real world.

If you're really serious about building middle-tier OO systems on top of an RDBMS, I recommend reading the manuscript for Martin Fowler's next book, Patterns of Enterprise Application Architecture. (The manuscript will be on-line until the book is published later this year.)

The examples in the book are in Java or C#, but translate fairly well to Perl.

The short version is there are choice you need to make about locking models. These choices affect how you manage caches, and how you ensure that the right changes get written back to the database in the right order. Getting a middle-tier system working well requires a lot of careful bookkeeping.

Replies are listed 'Best First'.
Re: Re: OO Perl & RDBMS Strategy Question
by ignatz (Vicar) on Aug 30, 2002 at 11:47 UTC
    w3mir to the rescue! $> perl w3mir -r http://martinfowler.com/isa/ ADDED: For the record, Mr. Fowler has written two of the great books on OO: UML Distilled and Refactoring, so this one is of particular interest. Thanks for the link!
    ()-()
     \"/
      `                                                     
    
Re: Re: OO Perl & RDBMS Strategy Question
by abell (Chaplain) on Aug 31, 2002 at 09:25 UTC