Search Blog
RSS Feeds
Recent Posts- How to Synchronize Distributed Cache with Oracle Database using OracleCacheDependency?
- How to Replicate a Distributed Cache across the WAN
- How to Handle ASP.NET Session State Storage in Multi-Site Deployments
- How to Use Custom Dependency in Distributed Cache?
- How to Configure .NET 4.0 Cache to use a Distributed Cache?
Recent Comments
- Javed on How Compact Object Serialization Speeds up Distributed Cache?
- Iqbal Khan on How to Synchronize Distributed Cache with Database with CLR Stored Procedures
- .NET Development Company on How to Cache ASP.NET View State in a Distributed Cache?
- Naty on How Cache Dependency Manages Data Relationships?
- Iqbal Khan on Configure ASP.NET Session State for Web Farms
Archives
Categories
- .NET 4.0 Cache
- Aggregate Functions
- ASP .NET performance
- ASP.Net
- ASP.NET Cache
- ASP.NET Output Cache
- Binary Serialization
- Bridge Topology
- Cache dependency
- client cache
- CLR procedures
- Continuous Query
- Custom Dependency
- data sharing
- Data Sharing with Distributed Cache
- Database synchronize
- Distributed Cache
- Distributed Cache Replication
- Distributed caching
- Distributed events
- Entity Framework
- Hibernate Second Level Cache
- Java
- Java Distributed Cache
- JSP Session Persistence
- LINQ Query
- Object Query
- Object Versions Sharing
- Oracle Cache Dependency
- Serialization
- Spring
- SQL cache dependency
Category Archives: Distributed caching
How to Use Custom Dependency in Distributed Cache?
Today, web applications are increasingly using distributed cache for boosting performance and scalability by caching frequently used data so as to reduce expensive database trips. Distributed cache spans and synchronizes over multiple cache servers to let you scale in a … Continue reading
How to Configure .NET 4.0 Cache to use a Distributed Cache?
In-memory distributed cache today has become really popular for applications running in a multi-server environment because it helps improve application scalability and performance. Until .NET Framework 3.5 there was ASP.NET Cache object available only for web application under System.Web.Caching namespace. … Continue reading
Posted in .NET 4.0 Cache, Distributed Cache, Distributed caching
Tagged .Net, .NET 4.0 Cache, Distributed Cache
Leave a comment
How to Cache ASP.NET View State in a Distributed Cache?
ASP.NET today is widely used for high traffic web applications that can need to handle millions of users and are deployed in load balanced web farms. One important part of ASP.NET is View State that many applications use. ASP.NET View … Continue reading
How to Synchronize Distributed Cache with Database with CLR Stored Procedures
Distributed caching has become a very important part of any high transaction application in order to ensure that the database does not become a scalability bottleneck. But, since a distributed cache keeps a copy of your application data, you must … Continue reading
Using Distributed Cache in Entity Framework Applications
Entity Framework is an object-relational mapping engine that provides abstraction from underlying relational database and therefore greatly simplifies development. Because of these benefits, more and more data-centric and high transactional applications and services are developed with Entity Framework. But, these … Continue reading
Posted in Distributed caching, Entity Framework
Tagged Distributed Cache, Entity Framework
2 Comments
How to use LINQ for Searching Distributed Cache?
Distributed caching is becoming really popular among developers of high transaction applications because it improves your application’s performance and scalability. And, this popularity means that developers are caching more and more data in it which they also want to be … Continue reading
How SQLCacheDependency Synchronizes Distributed Cache with Database?
Distributed Caching has become a popular way of improving .NET application performance and scalability. That is why developers are caching more and more data in distributed cache. However along with this come a few challenges. One important challenge is to … Continue reading
How to Improve ASP.NET Performance with Distributed Caching?
If your ASP.NET application only has a few users, you probably don’t care how fast or slow it is and it is probably giving you pretty good performance anyway. But, as you add more load to your ASP.NET application, the … Continue reading
How Cache Dependency Manages Data Relationships?
Distributed cache is becoming very popular because it is a powerful way to boost your application performance and scalability and handle extreme transaction load without slowing down. Both .NET and Java applications are using it more and more each day. … Continue reading
When to use client cache with distributed caching
A distributed cache is essential for any application that demands fast performance during extreme transaction loads. An in-memory distributed cache is faster than a database. And, it can provide linear scalability in handling greater transaction loads because it can easily … Continue reading
Posted in ASP.Net, client cache, Distributed caching
Tagged ASP.NET Performance, client cache, Distributed Cache
1 Comment