Stunner01225
Technical User
Hello,
I have created a class for storing and changing data; it is similar in design to a shopping basket. Most of my users are read-only and will therefore not need to use this class, so it is only users who have logged in (about 20%). Each logged in user will need to insatiate one. I have a few questions.
1. where would be the best place to store this object( it has the potential to be very large)
2. If I placed it in the user session variable would it be sent on the round trips to the user or stored at the server?
3. If I placed it in the cache would that be a solution or would each object overwrite the previous?
Thanks for any help.
I have created a class for storing and changing data; it is similar in design to a shopping basket. Most of my users are read-only and will therefore not need to use this class, so it is only users who have logged in (about 20%). Each logged in user will need to insatiate one. I have a few questions.
1. where would be the best place to store this object( it has the potential to be very large)
2. If I placed it in the user session variable would it be sent on the round trips to the user or stored at the server?
3. If I placed it in the cache would that be a solution or would each object overwrite the previous?
Thanks for any help.