[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

ThisBytes5

8/3/2006 5:57:00 PM

I have a need to cache some data per request. I looked at
HttpContext.Current.Cache, but that seems to be the application cache
and not just a cache for the current request.

Is there something built into .net already that will do a per
application cache? Searching google for the above subject just returned
more about the HttpContext.Current.Cache.

Thanks
Wayne

2 Answers

Alvin Bruney [ASP.NET MVP]

8/5/2006 12:37:00 PM

0

have a look at the session object or viewstate as well since it's per
request.

--
________________________
Warm regards,
Alvin Bruney [MVP ASP.NET]

[Shameless Author plug]
Professional VSTO.NET - Wrox/Wiley
The O.W.C. Black Book with .NET
www.lulu.com/owc, Amazon
Blog: http://www.msmvps.com/b...
-------------------------------------------------------


<ThisBytes5@gmail.com> wrote in message
news:1154627847.077464.136170@75g2000cwc.googlegroups.com...
>I have a need to cache some data per request. I looked at
> HttpContext.Current.Cache, but that seems to be the application cache
> and not just a cache for the current request.
>
> Is there something built into .net already that will do a per
> application cache? Searching google for the above subject just returned
> more about the HttpContext.Current.Cache.
>
> Thanks
> Wayne
>


sloan

8/7/2006 6:46:00 PM

0


I have a "object cacher" at my blog
spaces.msn.com/sholliday
based on the Session object, and the Singleton Design Pattern.



<ThisBytes5@gmail.com> wrote in message
news:1154627847.077464.136170@75g2000cwc.googlegroups.com...
> I have a need to cache some data per request. I looked at
> HttpContext.Current.Cache, but that seems to be the application cache
> and not just a cache for the current request.
>
> Is there something built into .net already that will do a per
> application cache? Searching google for the above subject just returned
> more about the HttpContext.Current.Cache.
>
> Thanks
> Wayne
>