Stories recently tagged with 'Caching'

ASP.NET Caching Gotcha(rjb.za.net)

submitted by twyfordtwyford(255) 5 years, 5 months ago

A small gotcha regarding ASP.NET and caching. read more...

add a comment |category: |Views: 17

tags: another

Implement "Donut Caching" with ASP.NET 2.0 Output Cache Substitution(weblogs.asp.net)

submitted by gavinjoycegavinjoyce(25.7k) 5 years, 5 months ago

"One of the most powerful, yet too often under-used, feature areas of ASP.NET is its rich caching infrastructure. ASP.NET's caching features enable you to avoid repeating work on the server for each new request received from clients. Instead, you can generate either html content or data structures once, and then cache/store the results within ASP.NET on the server and re-use them for later web requests. This can dramatically improve performance for your applications, and lower the load on critical backend resources like databases." read more...

2 comments |category: |Views: 142

tags: another

Best of both worlds - SessionCache(dotnetslackers.com)

submitted by javierRomerojavierRomero(1010) 5 years, 6 months ago

The Session and Cache objects each have their own advantages making it tricky to know which to use for a given piece of data. SessionCache is a simple class meant to bring together the best of both worlds. read more...

add a comment |category: |Views: 4

tags: another

Tips/Tricks and LINQ Slides+Demos from Scott Guthrie's Talk in Dallas(weblogs.asp.net)

submitted by gavinjoycegavinjoyce(25.7k) 5 years, 6 months ago

This talk covers ASP.NET UI, AJAX, Caching and Deployment Tips and Tricks, and Visual Studio 2005 tips/tricks. read more...

add a comment |category: |Views: 18

tags: another

ASP.Net 2.0 - Dynamic Fragments in Cached Web Pages(c-sharpcorner.com)

submitted by gavinjoycegavinjoyce(25.7k) 5 years, 7 months ago

In this article we will explore various techniques for including dynamic fragments within cached web pages. This feature is described as Post Cache Substitution and provides a personalized experience for the end user, while taking advantage of the benefits of Caching. read more...

add a comment |category: |Views: 2

tags: another

Server-side and client-side caching in ASP.NET(madskristensen.dk)

submitted by madskristensenmadskristensen(8565) 5 years, 7 months ago

Everywhere server-side caching is used you can and should use client-side caching as well. Even though the server can serve cached ASP.NET pages very fast it still rely on the browser to download and render the output. When adding client-side caching you get an enormous performance benefit when the page is visited more than once by the same browser. read more...

add a comment |category: |Views: 58

tags: another

The Secret Life Of NHibernates Caches(ayende.com)

submitted by UnquaLeUnquaLe(375) 5 years, 9 months ago

Ayende talks about NHibernate caches ! read more...

add a comment |category: |Views: 23

tags: another

Custom Output Caching in ASP.NET(stevenharman.net)

submitted by usshermussherm(5285) 5 years, 11 months ago

In this post I cover one of the finer points of Page Fragment Caching with the ASP.NET Framework - using the PartialCachingAttribute class and its varyByCustom parameter to provide customized caching of User Controls. There is even some sample code to help illustrate the point. read more...

add a comment |category: |Views: 11

tags: another

DataGrid Paging and Sorting Using A DataReader(developerfusion.co.uk)

submitted by james_crowleyjames_crowley(315) 6 years, 3 months ago

This article will demonstrate two ways one could implement the DataReader to bind a DataGrid, that includes caching, paging and persistent bi-directional sorting, all without the use of a DataAdapter/DataSet at all! read more...

add a comment |category: |Views: 324

tags: another