Parallel processing of requests from the same client
Posted: Fri Nov 26, 2010 8:20 am
Hello there,
I am trying to get my server process many requests from the same host simultaneously. I have found out that this is blocked because each request wait for the previous to free r/w privilages to session file. So I have implemented MySQL session storing acording to http://www.freeopenbook.com/mysqlcookbo ... ect-3.html.
It works fine the session is saved in my db but the requests still wait for the previous to end.
Can someone please help me with this ? I need this for testing purposes of estimating script runtime when server process multiple parallel requests.
I am trying to get my server process many requests from the same host simultaneously. I have found out that this is blocked because each request wait for the previous to free r/w privilages to session file. So I have implemented MySQL session storing acording to http://www.freeopenbook.com/mysqlcookbo ... ect-3.html.
It works fine the session is saved in my db but the requests still wait for the previous to end.
Can someone please help me with this ? I need this for testing purposes of estimating script runtime when server process multiple parallel requests.