[ZODB-Dev] Automating retry management

Benji York benji at zope.com
Tue May 11 08:38:11 EDT 2010


On Tue, May 11, 2010 at 7:34 AM, Jim Fulton <jim at zope.com> wrote:
> [...] The best I've been
> able to come up with is something like:
>
>    t = ZODB.transaction(3)
>    while t.trying:
>        with t:
>            ... transaction body ...

I think you could get this to work:

for transaction in ZODB.retries(3):
    with transaction:
        ... transaction body ...

ZODB.retries would return an iterator that would raise StopIteration on
the next go-round if the previously yielded context manager exited
without a ConflictError.
-- 
Benji York


More information about the ZODB-Dev mailing list