[ZODB-Dev] No ZODB 3.8.2 tag

2009-08-13 Thread Andreas Jung
Hi Jim, there is a ZODB 3.8.2 release but there is no SVN tag for 3.8.2. Also the 3.8 branch does not contain the information from the release notes that are present on PyPI. You missed to commit your local SVN changes? Andreas -- ZOPYX Ltd. Co KG \ ZOPYX Friends Charlottenstr.

Re: [ZODB-Dev] No ZODB 3.8.2 tag

2009-08-13 Thread Jim Fulton
On Thu, Aug 13, 2009 at 4:14 AM, Andreas Jungli...@zopyx.com wrote: Hi Jim, there is a ZODB 3.8.2 release but there is no SVN tag for 3.8.2. Also the 3.8 branch does not contain the information from the release notes that are present on PyPI. You missed to commit your local SVN changes?

[ZODB-Dev] increasing order of oids?

2009-08-13 Thread Jürgen Herrmann
hi there! is there a strict requirement for oids to be increasing? having read a ton of code my head is not so sure anymore, though i can't remember seeing a requirement for such anywhere in the code. if RadosStorage could pre-allocate oids in batches of thousands, that would probably give me a

Re: [ZODB-Dev] zodb design document

2009-08-13 Thread Shane Hathaway
Jürgen Herrmann wrote: i want RadosStorage to implement IMVCCStorage. so my understanding is that i remeber last_polled_tid (from invalidation polling and instead of loading the latest revision of an object, the storage always returns state as of the transaction with last_polled_tid, is that

Re: [ZODB-Dev] increasing order of oids?

2009-08-13 Thread Shane Hathaway
Jürgen Herrmann wrote: is there a strict requirement for oids to be increasing? No, but obviously there is a strict requirement that new_oid() return unique OIDs. if RadosStorage could pre-allocate oids in batches of thousands, that would probably give me a big performance win, or to put it