0

I've got a .NET website and an API interface which sits on top of a VPS (Virtual Server). They both use ASP.NET Caching system (which is pretty nice and comfortable). If it matters - the API system will be ported to WCF at some time.

I want to get ready to move from 1 VPS to multiple VPS (when we grow bigger) - thus I need some distributed Cache System.

Ideas would be much appreciated :)

Thanks!

Roman
  • 4,443
  • 14
  • 56
  • 81

1 Answers1

3

There are several products that provide this, some open source, some commercial. My personal preference is Microsoft's AppFabric Cache (which is free).

Erv Walter
  • 13,737
  • 8
  • 44
  • 57
  • Thanks. is there any special reason it's your preference? – Roman Apr 09 '11 at 13:07
  • Pros: It's free. It's supported by Microsoft. It was built for .NET. It works. Cons: Setup is complex if you need the high availability features. – Erv Walter Apr 11 '11 at 14:06