Re: Persistant dictionary with lockable elements

2006-07-12 Thread Bruno Desthuilliers
Will McGugan wrote: > Hi, > > I'd like to have a persistant dictionary in a server so that incoming > requests acquire a specific Python object, do something with it then > return. There wont be that many objects but it is the persistance that > is important here, I want the information to survive

Persistant dictionary with lockable elements

2006-07-12 Thread Will McGugan
Hi, I'd like to have a persistant dictionary in a server so that incoming requests acquire a specific Python object, do something with it then return. There wont be that many objects but it is the persistance that is important here, I want the information to survive server re-starts / crashes. The