Re: [ZODB-Dev] KeyError on OIBTree after export import

2007-03-14 Thread Bernd Dorn
On 14.03.2007, at 19:16, Dieter Maurer wrote: Bernd Dorn wrote at 2007-3-14 11:39 +0100: ... but after the import in the .ids attribute of the util (which is an OIBtree) raises a KeyError for an existing key so if i do key in sorted(self.ids) True self.ids[key] KeyError ... I can expla

[ZODB-Dev] Launchpad project for ZODB

2007-03-14 Thread Jim Fulton
I've set up a launchpad project for ZODB: https://launchpad.net/zodb/ Please use that to report bugs and propose features. Could someone do me a favor and update the wiki? :) I'll still use the Zope collector (or the Zope Launchpad tracker when it is created) for old ZODB bug reports. J

Re: [ZODB-Dev] Community opinion about search+filter

2007-03-14 Thread Dieter Maurer
Reply restricted to "zodb-dev"... Adam Groszer wrote at 2007-3-14 12:58 +0100: >Currently we're looking at something based on catalog/indexes. >As I checked the most comfortable solution would be based on >hurry.query. >Some questions arose: >- Is it necessary/worth adding indexes on all attribute

Re: [ZODB-Dev] mvcc related error?

2007-03-14 Thread Jim Fulton
On Mar 14, 2007, at 1:43 PM, Dieter Maurer wrote: Chris Withers wrote at 2007-3-14 10:18 +: Dieter Maurer wrote: Yes, it looks like an error: Apparently, "assert end is not None" failed. Apparently "storage.loadBefore" returned a wrong value. Unfortunately, neither of these means a

Re: [ZODB-Dev] KeyError on OIBTree after export import

2007-03-14 Thread Dieter Maurer
Bernd Dorn wrote at 2007-3-14 11:39 +0100: > ... >but after the import in the .ids attribute of the util (which is an >OIBtree) raises a KeyError for an existing key > >so if i do > > >>> key in sorted(self.ids) >True > >>> self.ids[key] >KeyError ... I can explain to you why you may get differe

Re: [ZODB-Dev] mvcc related error?

2007-03-14 Thread Dieter Maurer
Chris Withers wrote at 2007-3-14 10:18 +: >Dieter Maurer wrote: >> Yes, it looks like an error: >> >> Apparently, "assert end is not None" failed. >> Apparently "storage.loadBefore" returned a wrong value. > >Unfortunately, neither of these means anything to me ;-) That is because you did

[ZODB-Dev] Community opinion about search+filter

2007-03-14 Thread Adam Groszer
Hello, I'd like to ask your opinion, your experiences about searching and filtering in quite large object DBs. We need to add search and filter functions to our current app, where the user might be able to create quite _sophisticated_ filter criterias. (The app is a pure Z3 app, subject is documen

Re: [ZODB-Dev] mvcc related error?

2007-03-14 Thread Chris Withers
Dieter Maurer wrote: Yes, it looks like an error: Apparently, "assert end is not None" failed. Apparently "storage.loadBefore" returned a wrong value. Unfortunately, neither of these means anything to me ;-) I guess I should file a bug report? Why collector? cheers, Chris -- Simplistix

[ZODB-Dev] KeyError on OIBTree after export import

2007-03-14 Thread Bernd Dorn
hi all i have some very odd problem i use the ExportImport module to export an object with a btree (its a zope3 intid utility) the import export works just fine but after the import in the .ids attribute of the util (which is an OIBtree) raises a KeyError for an existing key so if i do