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

Developer Tutorials Blog: Iterating PHP objects, and readable code too!

Developer Drive: Creating a PHP User Survey: Writing to Database Tables

IBM developerWorks: Use an XML database in PHP and Java applications

Chris Hartjes' Blog: Reader Feedback: Working with XML In PHP

Duckout Blog: Do Funny Stuff with the Google Charts API and PHP


Community Events











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


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

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