News Feed
Jobs Feed
Sections

Recent Jobs

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



Similar Posts

Jonathan Snook's Blog: View Caching in CakePHP 1.1.8

DevShed: Working with PHP and MySQL

PHPHacks.com: Creating charts with JGraph

Khalid Hanif\'s Blog: Problems with Simple Testing

Ilia Alshanetsky's Blog: PHP 5.2.0 RC3 Released!


Community Events







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


example zendframework developer PEAR conference mysql release job package database zend releases framework cakephp code application ajax security PHP5 book

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