C
Calvin
I'm fairly new to programming, that said, I know how to 'program', but my
question is about design.
How big and what sort of objects should be stored in Session.
I'm doing an e-commerce website, and I've created an xsd based around the
shopping cart, customers details and the order's tables. The resulting
dataset is then populated accordingly and stored in session.
Is this bad news? I ask because the articles I read suggest limiting the
number of database hits... but then also say that the session object should
not be used excessively.
It's obviously about getting a balance, but how do I tell? Look at the task
manager to see how much memory the aspnet_wp worker process is using. About
50,000kbs... kind of feels too much
question is about design.
How big and what sort of objects should be stored in Session.
I'm doing an e-commerce website, and I've created an xsd based around the
shopping cart, customers details and the order's tables. The resulting
dataset is then populated accordingly and stored in session.
Is this bad news? I ask because the articles I read suggest limiting the
number of database hits... but then also say that the session object should
not be used excessively.
It's obviously about getting a balance, but how do I tell? Look at the task
manager to see how much memory the aspnet_wp worker process is using. About
50,000kbs... kind of feels too much