Caching

  • Thread starter Thread starter Shabam
  • Start date Start date
S

Shabam

Suppose in a .net application a user sees his homepage, which includes many
elements the requires sql queries. Each user sees a different homepage
obviously. Executing these queries every time a user goes to his homepage
is obviously going to drain a lot of systems resources, especially since
most of the time it's the same.

What are some of the ways to make this efficient? Perhaps some sort of
caching mechanism, or even a temporary table that stores just the elements
needed for display in the homepage?
 
ms-help://MS.VSCC.2003/MS.MSDNQTR.2003FEB.1033/cpref/html/frlrfSystemWebCach
ing.htm

System.Web.Caching.Cache
 
Bryan Martin said:
ms-help://MS.VSCC.2003/MS.MSDNQTR.2003FEB.1033/cpref/html/frlrfSystemWebCach
ing.htm

System.Web.Caching.Cache

Is there an online url for that? I don't have .net studio installed on this
computer. Thanks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top