Types of caching. How to implement caching?
Answer Posted / chandra
ASP.NET Caching Features
ASP.NET Web Applications
------------------------------------------------------------
--------------------
When clients access an ASP.NET page, there are basically
two ways to provide them with the information they need:
the ASP.NET page can either obtain information from server
resources, such as from data that has been persisted to a
database, or
the ASP.NET page can obtain information from within the
application.
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:
Output caching, which caches the dynamic response generated
by a request.
Fragment caching, which caches portions of a response
generated by a request.
Data caching, which allows developers to programmatically
retain arbitrary data across requests.
Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Where viewstate value is stored in asp.net?
What is an example of an application service provider?
How do you hide the columns?
What is custom attribute?
Differentiate strong typing and weak typing
How use Xml data in ASP.net?
How can exception be handled with out the use of try catch?
What is the procedure to handle the process request using mhpm events fired? : asp.net mvc
What is dynamic web page with example?
When maintaining session through sql server, what is the impact of read and write operation on session objects?
What is the function used for removing an event listener?
Why do we need asp.net?
How can i explain my project during interview?many time i expalain my project but they did't accept? please explain me.
How to use push notification?
Error : The operation couldn’t be performed because ole db provider sqlncli10 for linked server was unable to begin a distributed transaction.00000110 oledb provider for linked server returned message the partner transaction manager has disabled its support for remote/network transactions. I can able to execute the stored procedure in sql server but when i run the web page getting error like above. I did all the configuration. what is the solution?