Most Liked Content
#37171 Looking for developers to help in free and opensource project
Posted
AWS
on 11 December 2011 - 10:39 AM
Post a link to the project and maybe some of the users will join in.
#24748 Using ASP.NET Cache in Web Farms
Posted
cameron
on 14 July 2011 - 06:52 AM
ASP.NET has now become a really popular technology for web apps and more and more people are developing high traffic applications in it. And, to handle higher traffic, these ASP.NET apps are deployed in load balanced web farms where you can add more servers as your traffic load increases. So, it is very scalable except for one problem.
And, that problem is the database and your data storage which cannot scale in the same fashion to handle the higher traffic loads. So, what you get very quickly is a bottleneck where your ASP.NET application slows down and can even grinds to a halt.
In such situations, data caching is an excellent way of resolving this database and data storage bottleneck. Caching allow you to cache application data close-by and reduce those expensive database trips.
What is ASP.NET Cache?
ASP.NET Cache allows you to cache application data and is actually a fairly feature-rich cache including the following features:
Expirations: Automatic absolute and sliding expirations
CacheDependency: To manage data relationships in the cache
SqlCacheDependency: To synchronize cache with database
Callbacks: To be notified when items are updated in cache
ASP.NET Cache Limitations in Web Farms
Despite very useful caching features, ASP.NET Cache has some serious limitations. They are:
Does not synchronize across server or worker processes: It does not synchronize across multiple servers or even multiple worker processes. So, you cannot use it in a web farm or even a web garden unless your data is read-only whereas you need to cache all kinds of data, including one that changes somewhat frequently.
Cache size limitation: You cannot grow the ASP.NET Cache to be more than what one ASP.NET worker process can contain. For 32-bit systems, this is 1GB and that includes app code as well. Even for 64-bit systems, the size cannot scale.
Use ASP.NET Cache Compatible Distributed Cache
The way to work around these limitations of ASP.NET Cache is to use a distributed cache like NCache for web farms. NCache provides the same features that ASP.NET Cache plus more. But, as a distributed cache, NCache easily synchronizes across multiple servers.
Here are some benefits you get from NCache:
Scales transaction load very nicely: You can keep adding more cache servers to the cache cluster as your web farm grows from 2 to 200 servers. NCache never becomes a bottleneck in handling more traffic.
Scales data storage nicely: As you add more cache servers, your cache storage capacity grows due to Partition Cache topology.
Replicates data for reliability: You can ensure that no data loss occurs even if a server goes down because data is replicated to other servers.
Dynamic self healing cache cluster: NCache provides 100% uptime through this. And, you can add or remove cache servers at runtime without stopping the cache or your application.
Well, if you have an ASP.NET application running in a web farm, take a look at NCache and see how it will help improve your application’s performance and scalability.
#24746 Circular dependency
Posted
yogeesh
on 14 July 2011 - 05:05 AM
I have a doubt regarding circular dependency,is it possible to solve circular dependency through "Reflection".
#245 Download Visual C# Express Edition
Posted
AWS
on 06 June 2010 - 11:38 AM
Quote
#17974 Go to definition/ Go to Declaration not working consistently in VS2010 C++ un...
Posted
AWS
on 29 April 2011 - 11:38 AM
I'm working on a medium sized project and I rely heavily on F12 and ctrl-alt-F12 to go between declarations and definitions. However, lately "Go To Definition" and "Go To Declaration have instead been taking me to the Find Symbol Results tab.
It's not completely broken because it still works well on some of the classes. Also when I use the Add->C++ Class to auto generate a class, I can go easily between definitions and declarations for that class. However, with very little alteration to the header and and source file I get inconsistent results. (I added a basic struct to the header file and the Go To definition stop working for the auto-generated class that only had a default constructor and destructor).
I didn't know what to do, so I tried deleting the .sdf and .sln files and letting VS regenerate them, but that didn't fix anything. Any idea on what I can do to make this work or what might be causing problems within this project? I've created other small projects to test on, and F12, ctrl-alt-F12 work fine in those.
This is on a Windows 7 Ultimate machine.
View the full article
- Microsoft .Net Forums
- → Most Liked Content




Sign In
Create Account