I am having trouble creating connections from different threads to my zodb. <br>
In the main thread, I create/get the database using this:<br>
<br>
storage=FileStorage('my.fs')<br>
db=DB(storage)<br>
<br>
The main thread subsequently creates other threads, and I would like
those threads to be able to have access to the 'db' instance created in
the main thread. In that way I would be able to write:<br>
<br>
connection = db.open() in those threads. <br>
<br>
This is all very manageable in most of the threads that I run, as I can
pass the db instance in as an argument, however there is one thread
that I have to (for one reason or another) run using os.system and then
the file name. This means that it can have no idea about the db created
in the main thread.<br>
<br>
My last solution was that every process that required access to the
database had to open it (storage=FileStorage(...)), perform the actions
that it required, and then close the database. As you can imagine this
was taking far too long when lots of transactions were being made to
the database from multiple threads.<br>
<br>
Any help would be great,<br>
Thanks<br>
<br>
Alex Couper<br>
<br>
<br>