|
|
|
|
|
| | Total Hits: 2 | Today: 0 | Author: Jeff Prosise | Rating:  |
| |  Developers love the ASP.NET application cache. One reason they love it is that ASP.NET lets them create dependencies between items placed in the cache and files in the file system. If a file targeted by a dependency changes, ASP.NET automatically removes dependent items from the cache. Combined with cache removal callbacks—notifications broadcast to interested parties when cached items are removed—cache dependencies are a boon to developers seeking to maximize performance by minimizing time-cons... |
| | Total Hits: 2 | Today: 0 | Author: Dino Esposito | Rating:  |
| |  One of the most compelling improvements that ASP.NET brought to ASP programming was the Cache object. The Cache has some similarities to the Application object and is a container of global data (as opposed to session-specific data) that features a fair number of innovative characteristics. At its core, the ASP.NET Cache is a sealed data container class built around a hashtable and defined in the System.Web.Caching namespace. The Cache object is central to the whole ASP.NET infrastructure. Variou... |
| | Total Hits: 3 | Today: 0 | Author: Nancy Michell | Rating:  |
| |  Is there a trick to using .js and cascading style sheets (CSS) includes so they're cached instead of fetched when a request is made?... |
| | Total Hits: 3 | Today: 0 | Author: Malcolm Sheridan | Rating:  |
| |  When it comes to getting the most performance out of your ASP.NET application, caching is one avenue to look into. Earlier this year I demonstrated how to use SQL Cache Dependency using SQL Server 2005 and 2008, but this time I’ll demonstrate how to cache files using ASP.NET Cache Dependency.... |
| | Total Hits: 4 | Today: 0 | Author: Iqbal Khan | Rating:  |
| |  If you're developing an ASP.NET application, Web services or a high-performance computing (HPC) application, you're likely to encounter major scalability issues as you try to scale and put more load on your application. With an ASP.NET application, bottlenecks occur in two data stores. The first is the application data that resides in the database, and the other is ASP.NET session state data that is typically stored in one of three modes (InProc, StateServer, or SqlServer) provided by Microsoft.... |
| | Total Hits: 3 | Today: 0 | Author: ASP.NET | Rating:  |
| |  Caching greatly improves application performance because it reduces expensive trips to the database. But, if you want to use caching in your application, you must decide what to cache and where to put your caching code. The answer is simple. Cache your domain objects and put caching code inside your persistence classes.... |
| | Total Hits: 3 | Today: 0 | Author: Gaurav Arora | Rating:  |
| |  It’s nothing but a thought kind of memory. In respect to asp.net it’s the memory of the machine/server from where the source-code is running. It is the one way which allows storing complex data for reusability.... |
| | Total Hits: 4 | Today: 0 | Author: percyboy | Rating:  |
| |  We often use the XmlDataSource control together with the TreeView control.
If the data source is static, it works quite well. But, when the data source needs to be dynamic, there seems to be some problems. This article will introduce one such problem and give you a hack solution.... |
| | Total Hits: 5 | Today: 0 | Author: Scott Mitchell | Rating:  |
| |  One of the most sure-fire ways to improve a web application's performance is to employ caching. Caching takes some expensive operation and stores its results in a quickly accessible location. Since it's inception, ASP.NET has offered two flavors of caching: * Output Caching - caches the entire rendered markup of an ASP.NET page or User Control for a specified duration. * Data Caching - a API for caching objects. Using the data cache you can write code to add, remove, and retrieve i... |
| | Total Hits: 4 | Today: 0 | Author: rajbk | Rating:  |
| |  Cascading Drop Down is a jQuery plug-in that can be used by a select list to get automatic population using AJAX. The plug-in and a sample ASP.NET MVC project are attached at the bottom of this post.... |
| | Total Hits: 4 | Today: 0 | Author: Jeff Prosise | Rating:  |
| |  The surest way to write a sluggish Web application is to perform file or database accesses on every request. Every developer knows that reading and writing memory is orders of magnitude faster than reading and writing files and databases. Yet it's surprising how many of the same developers build ASP and ASP.NET pages that hit a file or database on each and every page access.... |
| | Total Hits: 13 | Today: 0 | Author: Prakash Singh Mehra | Rating:  |
| |  Introduction: It is a way to store the frequently used data into the server memory which can be retrieved very quickly. And so provides both scalability and performance. For example if user is required to fetch the same data from database frequently then the resultant data can be stored into the server memory and later retrieved in very less time (better performance). And the same time the application can serve more page request in the same time (scalability).... |
| | Total Hits: 9 | Today: 0 | Author: Narayan Veeramani | Rating:  |
| |  For building scalable and high-performance Web based applications, ASP.NET provides a feature called data caching. Data caching enables programmatic storing of frequently accessed data objects in memory. This feature can be extended to vastly improve performance for ASP.NET applications that query data stored in an Oracle database. This article describes a strategy for caching Oracle database data in ASP.NET Web applications deployed using a Web Farm environment. This technique enables caching o... |
| | Total Hits: 4 | Today: 0 | Author: David Penton | Rating:  |
| |  For most ASP.NET developers, the Cache (ala System.Web.Caching) offers great promise for scalability and performance, especially in a mostly read-only environment. The hardest part about caching is populating it with data. What are the safest ways to get this data? What are the safest ways to store this data? The author will discuss his framework for accessing and storing data in the ASP.NET cache (with a "Generics" twist). He also shows how to keep your cache fresh with the help of detailed exp... |
| | Total Hits: 5 | Today: 0 | Author: Chris Canal | Rating:  |
| |  Caching is the method of saving data to some form of memory (generally computer, not yours) with the aim of speeding up the time it takes to access that data. When you access a page, your browser will cache the page on your computer so that if you pressed the back button, it wouldn't have to download the page files again.... |
| | Total Hits: 9 | Today: 0 | Author: AzamSharp | Rating:  |
| |  The concept of Caching was introduced in ASP.NET 1.X and has been improved significantly in ASP.NET 2.0. Caching allows you to store commonly used items in the memory and thus not create them from scratch when they are requested. There are different types of Caching available in the .NET framework. In this article I will introduce you to Caching dependencies.... |
| | Total Hits: 10 | Today: 0 | Author: PIYALI SENGUPTA | Rating:  |
| |  Caching is a technique of storing an in-memory copy of important and much used data/information to improve the performance of any software system. The idea is to place frequently used data in quickly accessed media. The ASP.Net runtime includes a key-value map of CLR objects called cache. This lives with the application and is available via the HttpContext and System.Web.UI.Page. Using cache is to some extent similar to using Session object. You can access items in the cache using an indexer and... |
| | Total Hits: 20 | Today: 0 | Author: Amit | Rating:  |
| |  In my previous article "Page level caching with SqlDependency" you have learned how to create SqlDependency with page level Caching.
This article is intent to show you how to use Page.Cache class of System.Web.Caching.Cache with partial caching.... |
| | Total Hits: 10 | Today: 0 | Author: Microsoft Corporation | Rating:  |
| |  The XML Editor provides a schema cache located in the %InstallRoot%\Xml\Schemas directory. The schema cache is global to all users on your computer and includes standard XML Schemas that are used for IntelliSense and XML document validation.... |
| | Total Hits: 10 | Today: 0 | Author: Microsoft Corporation | Rating:  |
| |  The SqlDataSource control can cache data that it has retrieved, which can enhance the performance of your applications by avoiding the need to re-run resource-intensive queries. Caching is useful primarily in situations where the data does not change frequently.... |
|
|
|
|
|
|
|
|
|
|
|
|
|