B
bort
Hi all
If I need to have some information available to a user on a website across
multiple pages, I usually just store it in a session variable. For example,
the contents of a drop down box will be stored as a Vector in the session as
an attribute.
However, as you can guess, when you have multiple users coming to your site,
this can cause severe memory use, since each user (and thus, each session)
has memory allocated for this object.
I'm guessing that there is a way to store this kind of 'common' information
such that it is available to all visiting users without creating a copy of
it for all visiting users. Perhaps as a web application variable?
Any ideas?
bort
If I need to have some information available to a user on a website across
multiple pages, I usually just store it in a session variable. For example,
the contents of a drop down box will be stored as a Vector in the session as
an attribute.
However, as you can guess, when you have multiple users coming to your site,
this can cause severe memory use, since each user (and thus, each session)
has memory allocated for this object.
I'm guessing that there is a way to store this kind of 'common' information
such that it is available to all visiting users without creating a copy of
it for all visiting users. Perhaps as a web application variable?
Any ideas?
bort