Hi,
I need to add a unique variable to every GET request processed by the
application without issuing a redirect. Is there a way to cleanly accomplish
it in MP2?
The following is the illustration:
Request that looks like /app?m=someparams received by the browser should
become /app?m=someparams&
I am using Apache/mod_perl/ApacheDBI/DBI combination with connect_on_init()
to provide child processes (prefork model) with connections had had been
already established.
On database backend, I currently see 77 connections established.
netstat on the front end indicates 77 active connections.
How