home » blogs » vivek_iit » Caching in ASP.NET: Velocity Distributed caching Framework
  Rate This Blog Entry:  register  or  login

Author

vivek_iit vivek_iit (Member since: 11/27/2008 11:54:25 AM)
I am one of the administrators at CodeAsp.Net and I love programming, architecting solutions, code reviews, teaching and writing about ASP.NET.

View vivek_iit 's profile

Comments (2)

Jim @ ASP .NET Caching
8/20/2009 11:31:38 AM Anonymous said:
@vivek No doubt that memcached is a very good product and is used by today's big names such as faceBook, Livejournal, and many others. But you mentioned it yourself that it is more of a suitable solution for a Linux environment then for windows or .NET. On the contrary, Velocity, which is not yet finally released and we are still waiting for its CTP4, is yet proving itself and making its room in the domain of distributed caching. But, it is still in its early development phases, and is lacking behind in providing us, the end users, with a detailed set of features which are being provided by its competitors in distributed caching domain. While developing a .NET based solution for one of my clients, I needed a distributed caching solution which could fulfill the requirements of scalability, reliability and performance boost desired by my client, and at the same time be easy to use. After some research, I came across NCache, which had all the features one may require for a distributed caching solution in .NET environment. Though, Velocity was also an option, but feature wise, and usability wise, I proffered NCache. So, by personal experience, I would recommend free version of NCache over Velocity. It seems to me that you probably have tried both memcached and Velocity, so I would suggest you to check out NCache as well. here is the download link for you. http://www.alachisoft.com/download.html
by
limzim2010
4/2/2010 6:54:29 AM limzim2010 said:
I found this is an informative and interesting post so i think so it is very useful and knowledgeable. I would like to thank you for the efforts you have made in writing this article. I am hoping the same best work from you in the future as well. In fact your creative writing ability has inspired me. Really the article is spreading its wings rapidly... sonnerie gratuite pour portable
by

Leave a comment


 
Type the characters:
 *
 
   

Join CodeAsp.Net for FREE Today!

It's fast, easy and free! Submit articles, get your own blog, ask questions & give answers in the forums, and become a better developer, faster.

enter your email address:

Blogs RSS Feed

vivek_iit's latest blog posts

  • ASP.NET MVC vs Web forms
    7/9/2010 12:30:40 PM
    With ASP.NET MVC 3 to be out soon, there are still many developers confused on whether to use MVC or the standard Web Forms UI while building their own custom ASP.NET web applications. I know this has...
  • Convert Int to Enum in C#
    5/13/2010 11:47:19 AM
    Here is some quick code to convert an integer to an enum in C#: Assume we have an enum UserInfoDisplayField Method 1: UserInfoDisplayField myEnum=(UserInfoDisplayFieldType)Enum.ToObject(typeof(UserInf...
  • Can I run ASP.NET 2.0 and 3.5 code on the same website?
    4/27/2010 9:46:47 AM
    Run ASP.NET 2.0 and 3.5 applications on the same server Yes, you can run both together, infact the 3.5 applications use the 2.0 compiler. Why? Because version 3.5 is just a wrapper around 2.0 with som...
  • Call C# code within ASPX page
    4/26/2010 9:26:31 AM
    How to call C# code within ASPX page Many times we might need to call the C# or VB.NET code from within the ASPX page instead of using a code-behind file. Here is a quick code snippet to do the same: ...
  • McAfee problem with Windows XP
    4/22/2010 5:09:50 AM
    Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 Microsoft has been made aware of an issue with a McAfee DAT file update - released Wednesday, April 21, 2010 - that has been c...
Blogs RSS Feed

Latest community blog posts

  • C#: Find the maximum key from a dictionary
    7/25/2010 2:43:42 PM  by raghav_khunger
    Yesterday a person asked on the forums on how to find the maximum key from a dictionary. He needs to perform some logic after finding the maximum key so I gave him the solution to use Max of LINQ. Bel...
  • Literal control in ASP.NET
    7/21/2010 9:16:37 PM  by mohit
    In this blog I will explain Literal control in ASP.NET. The Literal control used to display static text on a web page. Literal control is not rendered as a <span> tag like label control. The Lit...
  • Calculate First and Last Day of Month
    7/21/2010 3:43:42 PM  by hajan
    This is pretty simple, but a bit tricky for those that haven't tried it yet, so I would like to document it here :). You may be in need to calculate the first or last day of the month in your ASP.NET ...
  • Checking the existence of dictionary keys
    7/20/2010 3:31:31 PM  by hajan
    Dictionary is an interesting mechanism which provides us very good way to associate keys and values on a simple manner. Key/Values can be of any type. I won't get into explaining what is (or what is n...