List types of caching available in asp.net?

devquora
devquora

Posted On: Feb 22, 2018

 

Caching helps our app to decrease server round trips for fetching data from the database by saving or persisting frequently used data in memory.

Asp.net supports five types of Caching are

  • Output Caching
  • Data Caching
  • Class Caching
  • Object Caching
  • Configuration Caching

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Caching

    What is web caching?

    A web cache is a temporary storage of static resources like images, .js, CSS files or multimedia file on users browsers cache so it reduces server lag....

    Caching

    What is a cache memory?

    Cache memory is fastest memory that is used by CPU.It used as buffer between RAM and the CPU and helps to reduce the average cost or time to access data from the main memory....

    Caching

    How to save images in cache android?

    Saving images in cache android helps your application runs faster. You can use the LRUCache Algorithm to cache images or static resources in android....