Changeset 63

Show
Ignore:
Timestamp:
05/04/06 00:04:35 (4 years ago)
Author:
sky
Message:

r66@crucially-3 (orig r994): btrott | 2005-10-11 09:47:48 -0700
Added description, and note about it being alpha

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/lib/Data/ObjectDriver.pm

    r62 r63  
    8989    $ingredient->quantity(10); 
    9090    $ingredient->save; 
     91 
     92=head1 DESCRIPTION 
     93 
     94I<Data::ObjectDriver> is an object relational mapper, meaning that it maps 
     95object-oriented design concepts onto a relational database. 
     96 
     97It's inspired by, and descended from, the I<MT::ObjectDriver> classes in 
     98Six Apart's Movable Type and TypePad weblogging products. But it adds in 
     99caching and partitioning layers, allowing you to spread data across multiple 
     100physical databases, without your application code needing to know where the 
     101data is stored. 
     102 
     103It's currently considered ALPHA code. The API is largely fixed, but may seen 
     104some small changes in the future. For what it's worth, the likeliest area 
     105for changes are in the syntax for the I<search> method, and would most 
     106likely not break much in the way of backwards compatibility. 
    91107 
    92108=head1 METHODOLOGY