Jump to content

A quick question


jscix

Recommended Posts

I'm curious if anyone knows of any reason why persisting an object in a session could be a bad idea?

 

Besides memory usage, and if anyone can answer this, how much memory usage would I be looking at by storing an object in a session?

The object is merely a storehouse for user related data. (name, address, phone#, etc.)

 

It also contains a few methods for manipulating that data..

 

Thanks in advance.

Link to comment
Share on other sites

Most of the time its not nessissary to do this because you won't need the entire object you'll just need there name for instance in which case you just store there name in the session.

 

Also another reason not to do it is because sometimes you won't need to use sessions on all pages but you may need to access the object on that page, by storing that entire object in a session you'll have to re-open the session to get at it.

 

Not the best argument in the book but you can also loose that session data with Internet Explorer and boom there goes your object, it makes it hard to troubleshoot through your code.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.