8 Aug
2000
8 Aug
'00
5:47 p.m.
Nicholas Lo writes:
... database modification seen inside but not outside of process ...
Obviously, the database modifications have not been commited. Auto-Commit in Zope is coupled to *one* thread serving the request: It works by registering with the "transaction" associated with the current thread. At the end of a request the transaction of the current thread is commited (or aborted, if an error occured). If registration is done in a different thread, the actions are not commited/aborted at the end of the request. Why do you want to make your life more difficult by splitting a Zope thread into several? Dieter