| |||||
ASP.NET Caching FeaturesWhen clients access an ASP.NET page, there are basically two ways to provide them with the information they need:
Retrieving information from a resource outside the application will require more processing steps, and will therefore require more time and resources on the server than if the information can be obtained from within the application space. If the information that will be sent to the browser has already been prepared by a previous request, the application will be able to retrieve that information faster if it has been stored in memory, somewhere along the request/response stream. Known as caching, this technique can be used to temporarily store page output or application data either on the client or on the server, which can then be re-used to satisfy subsequent requests and thus avoid the overhead of re-creating the same information. Caching is particularly suitable when you expect to return the same information in the same format for many different requests. ASP.NET provides the following types of caching that can be used to build highly responsive Web applications:
In This Section
Related Sections
|
| ||||
Check out related books at Amazon
© 2000-2008 Rey Nuñez All rights reserved.
If you have any question, comment or suggestion
about this site, please send us a note
You can help support aspxtreme