News Feed
Jobs Feed
Sections




News Archive
Tom Rawcliffe's Blog:
session_start() blocking in php
May 25, 2011 @ 10:46:21

Tom Rawcliffe has a new post to his blog talking about an issue he found when trying to optimize a site for his company's systems - a problem with the blocking sessions caused when the pages were loaded.

Now I didn't know it but is seems that php's session handling is blocking on a per request basis. Kinda makes sense if you think about it, that if two requests simultaneously try and change a session variable then you would get constancy issues. So php handles this by making session_start() a blocking action and will wait for any other request to either finish or close the session using session_write_close().

The only reliable fix he found for the issue was to only selectively use the session in certain circumstances (or on certain pages) and closing it out when you were done with it.

0 comments voice your opinion now!
sessionstart blocking page load issue


blog comments powered by Disqus

Similar Posts

php|architect: October 2007 Issue Released

php|architect: August 2006 Issue Released

DevShed: Paginating Blog Entries with Code Igniter

php|architect: December 2005 Issue Released

Webdigity.com: Caching your pages with PHP


Community Events











Don't see your event here?
Let us know!


testing tool series development framework database example object interview zendframework2 podcast community release functional phpunit language opinion composer introduction code

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework