This is a discussion on How caching will help to improve the performance of asp .net application? within the ASP and ASP.NET Programming forums, part of the Web Development category; Use Caching to improve the performance of your application...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| OutputCaching enables your page to be cached for specific duration and can be made invalid based on various parameters that can be specified. The Cache exists for the duration you specify and until that time, the requests do not go to the server and are served from the Cache. Do not assign cached items a short expiration. Items that expire quickly cause unnecessary turnover in the cache and frequently cause more work for cleanup code and the garbage collector. In case you have static as well as dynamic sections of your page, try to use Partial Caching (Fragment Caching) by breaking up your page into user controls and specify Caching for only those Controls which are more-or-less static. |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Explain how Caching in Asp.net 2.0 is different from Caching in Asp.net 1.1? | Arun | ASP and ASP.NET Programming | 6 | 09-19-2007 10:15 PM |
| Caching in php | abhilashdas | PHP Programming | 1 | 08-06-2007 11:42 PM |
| How would you improve performance of a Java application? | oxygen | Java Programming | 1 | 07-26-2007 05:00 AM |
| How would you improve performance of a Java application? | H2o | Java Programming | 1 | 07-24-2007 03:46 AM |
| ASP Caching | nhoj | ASP and ASP.NET Programming | 0 | 04-09-2007 09:12 AM |