Document databases/Key-value stores for use with .Net projects

.net, database, keystore, nosql

Solution

CouchDB is well regarded and accessible via .Net albeit not that pleasant to install on windows still.

Thrift api compatible servers like cassandra will talk .Net

Tokyo Cabinet can be simply accessed by the (apparently) full .Net port of Tokyo Tyrant

MongoDB has several .Net api options

I would suggest that indicating whether sharding (or other horizontal scaling capabilities) are more or less important that some level of consistency in your persistent store since all of the above trade off the consistency for low latency and good scalability in some way or another.

Problem

Are there any document databases and/or key-value stores (something like Project Voldemort, MongoDB, etc.) that work well with .Net projects? Most of the options I've looked at so far seem to be more geared towards the non-Microsoft/Java/open-source technologies and I was wondering if anyone had any experience/recommendations with such solutions for the Microsoft stack.

Original source

Related problems