Graham Dumpleton wrote:
There are two things you can do to gauge where any loss arises. First is to
ensure that module reloading is turned off and see how that changes things.
PythonAutoReload Off
The second is to reenable the old module importer as a comparison. This needs
to be done at global scope within main Apache configuration:
PythonOption mod_python.legacy.importer *
The argument is actually a comma separated list of interpreter names for which
to use the old importer. Listing just '*' has the effect of using the old
importer
for all interpreter instances.
I'm getting the same results with either or both options, so it may be a
simple system glitch or a performance hit elsewhere.