Amir Pournasserian
Amir Pournasserian

Reputation: 1674

ASP.NET and distributed caching in more than one web server

I need distributed cache to be used in more than one web server.

I've tried a file based cache dependency, but it doesn't work in UNC path. I think .NET can not monitor the files on the UNC path.

I know that Microsoft has presented a new feature in Velocity. But, is there any other solution (like memcache in PHP)?

Upvotes: 1

Views: 666

Answers (3)

slfan
slfan

Reputation: 9129

You could use NCache. A free express version is available for up to two servers.

EDIT: I just realized you cannot install anything. NCache needs installation on the server as well.

Upvotes: 1

LukeH
LukeH

Reputation: 269628

Are you aware that "Velocity" is now a final, shipping product? It's part of Windows Server AppFabric.

Upvotes: 1

Darin Dimitrov
Darin Dimitrov

Reputation: 1039438

There are memcached providers for ASP.NET.

Upvotes: 1

Related Questions