News Feed
Jobs Feed
Sections




News Archive
Richard Thomas' Blog:
Improving PHP Sessions
July 23, 2007 @ 09:35:00

Richard Thomas has shared some suggestions on improving the performance and use of PHP's built-in sessions in your site:

If your developing a new website and want to ensure its scalable sessions can be a sticking point. [...] There are a couple problems you may run into with this approach and most database driven examples you may use to base your session code off.

These problems can pretty much be summarized into a single sentence: Every single page load your database is going to be hit at least 2 times, first to read the session data and then session to rewrite all that data.

He includes three suggestions:

  • Hash your data when pulled from the DB, if your data hasn't changed don't bother updating
  • Figure out what your margin of error is for how long a session has been inactive (don't update if you don't need to)
  • Use memcache in conjunction with your database, Check memcache first if its there, if it is use memcache, if its not pull from DB and shove into memcache when you DO update your data update memcache at the same time.
0 comments voice your opinion now!
session improve database problem suggestion memcache session improve database problem suggestion memcache


blog comments powered by Disqus

Similar Posts

SaffronStroke.com: 7 jQuery Books for HTML, ASP.NET, PHP Developers and Designers

Hardened-PHP.net: Zend Platform Multiple Remote Vulnerabilities

PHP.net: PHP 4.4.6 Released

Zend Developer Zone: ZendCon Sessions Episode 040: Memcached: the better Memcache interface

ITNewb.com: Generating Session IDs and Random Passwords with PHP


Community Events











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


podcast example framework release symfony2 phpunit series development database introduction interview testing zendframework2 conference functional usergroup language community rest opinion

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