Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Shared Variable Vs. Session Variable

Reply
Thread Tools

Shared Variable Vs. Session Variable

 
 
John Kraft
Guest
Posts: n/a
 
      10-21-2003
Hi all,

My question is more of a phylisophical one here, but I am wondering what
the difference is (effectively and performance wise) between using a
shared variable/static variable and using a session variable.

I have two different applications right now that effectively perform the
same action at one point. In the one application I created a shared
variable:

shared myTable as DataTable;

In the other application I used a session variable:

session("myTable") = myTable;

Both of these ways "seem" to perform identically... that is they both
produce the same end result when I use them.

What's your view on this?

John Kraft

 
Reply With Quote
 
 
 
 
Marina
Guest
Posts: n/a
 
      10-21-2003
Shared variables are shared by every user using your web app. They last
until the web app shuts down.

Session variables are specific to a particular user. These last only for the
life of the session. If the session timeout is set to 5 minutes, after 5
minutes of inactivity the session is over, and the variable's value is gone
with it.

Session variables are going to be more costly as you are going to have a
copy of them per user.

The types of variables do not perform identially. If you have 2 people
accessing your application, they will share a copy of the Shared variable.
User1 can modify it - and User2 who accesses it afterwards sees the changes
User1 made.

With session variables, each user has their own copy of the variable, and do
not overwrite each other's changes.

"John Kraft" <> wrote in message
news:bn42g7$7ke$...
> Hi all,
>
> My question is more of a phylisophical one here, but I am wondering what
> the difference is (effectively and performance wise) between using a
> shared variable/static variable and using a session variable.
>
> I have two different applications right now that effectively perform the
> same action at one point. In the one application I created a shared
> variable:
>
> shared myTable as DataTable;
>
> In the other application I used a session variable:
>
> session("myTable") = myTable;
>
> Both of these ways "seem" to perform identically... that is they both
> produce the same end result when I use them.
>
> What's your view on this?
>
> John Kraft
>



 
Reply With Quote
 
 
 
 
Cowboy \(Gregory A. Beamer\)
Guest
Posts: n/a
 
      10-21-2003
Have a couple of people hit the app at the same time as you and have them
choose different variables to set up myTable. Then, you will see the
difference between Shared/static and Session.

I worked on an app where another developer set up a static function to
retrieve info. It did not manifest through the pilot, as there was not
enough activity. Put into production, users began to see cities outside of
their control, as the city was cached in a static property. Ouch!!!

If the variable is application wide, static is fine. If it gets altered on a
per user basis, you will either have to cache in a static array, or use
session. The advantage of session is it drops out when the session dies.

NOTE: Behind the scenes, in .NET, static and session are fairly similar, as
session objects are cached statically.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

************************************************** ********************
Think Outside the Box!
************************************************** ********************
"John Kraft" <> wrote in message
news:bn42g7$7ke$...
> Hi all,
>
> My question is more of a phylisophical one here, but I am wondering what
> the difference is (effectively and performance wise) between using a
> shared variable/static variable and using a session variable.
>
> I have two different applications right now that effectively perform the
> same action at one point. In the one application I created a shared
> variable:
>
> shared myTable as DataTable;
>
> In the other application I used a session variable:
>
> session("myTable") = myTable;
>
> Both of these ways "seem" to perform identically... that is they both
> produce the same end result when I use them.
>
> What's your view on this?
>
> John Kraft
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
global variable is shared in shared library ankugoe7@gmail.com C Programming 1 07-15-2008 04:26 PM
System Session Variable VS. Own-declared 'Session' Variable chowchho ASP .Net 7 03-28-2008 02:38 PM
Shared, why not a 'Local Shared' (re: Session and ViewState dislike) ben ASP .Net 3 11-15-2004 03:04 PM
Session variable are shared between users ton ASP .Net 5 04-05-2004 03:29 PM
Cannot refer to an instance member of a class from within a shared method or shared member initializer without an explicit instance of the class. DJ Dev ASP .Net 3 02-08-2004 04:19 PM



Advertisments