06-11-06 12:12 AM
Jim Gallacher wrote:
> Laurent Blanquet wrote:
>
> This is the first that this has been reported, so forecasting a fix is
> difficult. It would be helpful if you created a JIRA issue at
> http://issues.apache.org/jira/browse/MODPYTHON
>
> util.FieldStorage is straight Python code, so I'm surprised that it
> would be leaking, particularly 16K per request. Can you offer any more
> details? How are you testing, other mod_python Apache directives you may
> be using an so on.
Laurent,
Also, could you confirm that it *is* FieldStorage that is leaking (if
you haven't already) by just reading the request body, bypassing
FieldStorage completely. eg.
import mod_python
from mod_python import util
def handler(req):
data = req.read()
return mod_python.apache.OK
Thanks,
Jim
[ Post a follow-up to this message ]
|