Roman
Roman

Reputation: 4513

ASP.NET Caching in a web cluster

We are building a large scale web platform where we try to use Caching to speed up things - though now it's a single server, we'll probably upgrade it to a cluster. Will the Caching work there? Should we consider anything special?

Thanks1

Upvotes: 0

Views: 537

Answers (1)

Darin Dimitrov
Darin Dimitrov

Reputation: 1039438

You will need to use a distributed cache. You can find implementations for different caching providers such as memcached or Velocity.

Upvotes: 1

Related Questions