English 中文(简体)
Good scalable fault-tolerant in-memory database with LINQ support for .NET
原标题:

Are there are good in-memory transactional databases that support LINQ and SQL Server persistance? I d like to create a full representation of a large data store in memory and have it commit to a SQL Server Database in a lazy fashion, but still keep some level of fault tolerance by scaling it out horizontally. I don t want to rely on non-relational datagrams like CouchDB.

最佳回答

SQLite supports in-memory databases has transaction support and has a Linq provider as well.

As for the SQL Server persistance, I think you would be on your own to code up something for doing lazy transfers to a backing SQL Server database.

问题回答

SQL Server with an ORM tool and possibly a caching solution.





相关问题
Error monitoring/handling on webservers

We have a web server that we re about to launch a number of applications onto. They will all share database and memcached servers, but each application has it s own mySQL database and all memcached ...

Articles about replication schemes/algorithms?

I m designing a distributed system with a certain flow of data in it. I d like to guarantee that at least N nodes have almost-current data at any given time. I do not need complete consistency, only ...

热门标签