20 Oct
2005
20 Oct
'05
7:46 p.m.
Chris Withers wrote at 2005-10-20 12:03 +0100:
... I would then have this modification done in a tightly controlled external method (from a security point of view) and make sure you use some big Locks (see python threading module's documentation) so multiple simultaneous requests don't cause carnage...
Be careful with External Methods and locks: An External Method does not share the module namespace with the same External Methods in other workers. Thus, you should not use locks defined in the source file of the External Method (but outside in a true Python module). -- Dieter