UpTheCreek
UpTheCreek

Reputation: 32391

Distributed Key/Value Stores that can run on Windows, and have .Net clients?

As the title says, does anyone know of any Distributed Key/Value Stores that can run on Windows, and have .Net clients?

Thank you

Update: Sorry, forgot to add that it needs to be persisted.

Upvotes: 1

Views: 2415

Answers (4)

Massimo Zerbini
Massimo Zerbini

Reputation: 3191

GetCache.net is a distributed key/value store running on Windows and has .Net client library. It works only in-memory.

Upvotes: 0

Sam Saffron
Sam Saffron

Reputation: 131112

App Fabric is Microsoft's solution.

RavenDB can probably act as a sophisticated key value store.

Additionally there are ports of memcached and redis does work on windows.

Upvotes: 1

mdubb
mdubb

Reputation: 11

Membase is a distributed key-value store that supports Windows and has a .NET client (Enyim).

Upvotes: 1

TTT
TTT

Reputation: 2375

You can use MongoDB, CouchDB or Cassandra. They are more than a key-value-store but they do run on windows and have .net clients.

Upvotes: 1

Related Questions