Jump to content

Will extending session timeout cause a performance hit?


Recommended Posts

Session IDs are typically stored in cookies, and browsers typically delete those cookies when closed.

 

 

As such, you will have to store it in cookies unless you plan on having a user leave his browser open 12 hours.  Just remember with cookies, never trust the user data.  Instead of having something like:

 

username=corbin

loggedin=1

 

In the cookies, have something like

username=corbin

password=md5 hash of password (or sha1 or whatever)

 

That way you can actually validate something and not just blindly trust the cookie.

Thanks for all your replies,

 

I've increased the session timeout with no performance hit so far and will take your suggestions on board and look at implementing a cookie based secure solution.

 

Thanks all.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.