[ZODB-Dev] Re: so your coming from the rdbms world tutorial?

Sean Allen sean at ardishealth.com
Sat Mar 22 04:55:52 EDT 2008


On Mar 22, 2008, at 3:50 AM, Roché Compaan wrote:

> On Fri, 2008-03-21 at 22:49 -0400, Sean Allen wrote:
>> And we want to change the the description of Widget B and have that
>> change appear for everything, how do I do that?
>> basically, I want all LineItems for Widget A to all refer to a single
>> instance of Product.
>
> If you simply assign the product to an attribute on the line item, it
> will create a reference in the ZODB. And you can use zc.relation to
> index and query the relation.
>
> # get the product from your products container:
> product = productfolder['ProductXYZ']
> # assign it to the line item instance
> lineitem.product = product
>
> It's really that simple! If you change the description attribute of  
> the
> referenced product, all line items referencing it will show the new
> description.


Ha! Ok.

Questions then from there.

Why not store each object type,

customer, order etc in their own folders?

is there a reason to have a folder that contains a more complete graph?
what advantages would that have? speed of access?

--

the database i am looking at moving over has

1.2 million entries in a transactions table
980,000 orders
775,000 customers
1.5 million order items

and probably another 600,000 other assorted entires that would
be needed in an oo scenario ( tons of join table entries get ditched  
tho, nice! )

what type of server setup etc would be needed to handle that load
considering that currently, 40,000 new orders go in a month
along with the corresponding numbers of customers etc.





More information about the ZODB-Dev mailing list