Re: [ZODB-Dev] Database size increase on commit()

2007-11-22 Thread tsmiller
Thanks. The changes that you suggested work. I think that what I did not see is that one key = one btree. I was trying to store multible stores under a single btree ie.. dbRoot['books'] = bTree.OOBTree() dbRoot['books']['store1'] = {} dbRoot['books']['store2'] = {} dbRoot['books']['store3'] = {

[ZODB-Dev] Re: Database size increase on commit()

2007-11-22 Thread Jürgen Kartnaller
tsmiller wrote: Thanks. The changes that you suggested work. I think that what I did not see is that one key = one btree. I was trying to store multible stores under a single btree ie.. dbRoot['books'] = bTree.OOBTree() dbRoot['books']['store1'] = {} dbRoot['books']['store2'] = {} dbRoot['bo

Re: [ZODB-Dev] Database size increase on commit()

2007-11-22 Thread tsmiller
jürgen Kartnaller-2 wrote: > > > > tsmiller wrote: >> Thanks. The changes that you suggested work. I think that what I did >> not >> see is that one key = one btree. I was trying to store multible stores >> under a single btree ie.. >> dbRoot['books'] = bTree.OOBTree() >> dbRoot['books']['s