|
|
| Data Caching [+] Favor-It | |
| |
 |
| | Sort By:
|
This installment of Wicked Code presents a technique for extending the ASP.NET application cache to support database dependencies. It involves database triggers and extended stored procedures. Author: Jeff Prosise Code: ASP.NET v1.0 & VB |
In any Web application some data will be frequently used and some data will be infrequently used. We can improve the performance of our ASP.NET application by loading in advance the frequently-used data, a technique known as proactive loading. Author: Scott Mitchell Code: ASP.NET v2.0 & VB |
In the previous tutorial we learned how to apply caching at the Presentation Layer. In this tutorial we learn how to take advantage of our layered architecture to cache data at the Business Logic Layer. Author: Scott Mitchell Code: ASP.NET v3.0 & VB |
|  | |
Caching can mean the difference between a slow and a fast Web application. This tutorial is the first of four that take a detailed look at caching in ASP.NET. Learn the key concepts of caching and how to apply caching to the Presentation Layer. Author: Scott Mitchell Code: ASP.NET v2.0 & VB |
Web caching technology in ASP.NET and C# is helpful for popular website reducing its server workload and improving access times. This tutorial will show you how to use web caching save data to RAM, and improve data access times therefore. Author: AspNetTutorials.com Code: ASP.NET v2.0 & C# |
Web caching technology in ASP.NET and VB.NET is helpful for popular website reducing its server workload and improving access times. This tutorial will show you how to use web caching to save data to RAM, and improve data access times therefore. Author: AspNetTutorials.com Code: ASP.NET v2.0 & VB |
This article demonstrates how to implement data caching by using key-based dependencies in a Microsoft ASP.NET application. Author: microsoft.com Code: ASP.NET v1.0 & C# |
|  | |
ASP.NET provides a full featured cache engine that can be utilized by pages to store and retrieve arbitrary objects across HTTP requests. The ASP.NET cache is private to each application and stores objects in memory. Author: GotDotNet Code: ASP.NET Beta 1 & VB |
The following sample shows a simple use of the cache. It executes a database query and caches the result, which it continues to use for the lifetime of the application. Author: GotDotNet Code: ASP.NET Beta 1 & VB |
Icon Key >
 - Recently Updated
 - Showcase Listing
|