Re: [Zope] Cancelling long processes in Zope

2005-08-19 Thread Dieter Maurer
Ausum Studio wrote at 2005-8-19 01:31 -0500: >How do you stop a long process just triggered, i.e., by accident? If the process is an external process (rather than a thread), you sent it a signal (e.g. a SIGTERM). This may not work in Python 2.3.x for most signal, as these Python versions block si

Re: [Zope] Cancelling long processes in Zope

2005-08-18 Thread Andreas Jung
I think it is good practice to deal with long-running processes using a dedicated ZEO client and not to use a website for this. Especially because a long-running request allocates one thread. If you have four threads (default) and a user double or trible-clicks on the same link this will eat up

[Zope] Cancelling long processes in Zope

2005-08-18 Thread Ausum Studio
How do you stop a long process just triggered, i.e., by accident? One of our apps allows our users to trigger long processes. The way we used to deal with them is to stream response lines so that the user has an idea of what's going on. Nonetheless, some processes aren't worth to watch, so they ar