Caching varibles in ASP

Associate
Joined
21 Feb 2004
Posts
886
Basically I want to cache variables in ASP but i cant find any free software to do it. I’m currently looking at aspcache and using global.asa but that’s not free but might do for now. Is global.asa the best way to cache data for shortish periods of time?

The pages i am making are for internal usage so it doesnt have to be massivly demanding.

Cheers.
 
Soldato
Joined
25 Nov 2002
Posts
3,495
Global Variables: store in an Application object
User variables: store in a Session object

Why would you buy a third party product to do that which ASP does itself?
 
Back
Top Bottom