Good scalable fault-tolerant in-memory database with LINQ support for .NET

一世执手 提交于 2019-12-11 01:45:43

问题


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.


回答1:


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.




回答2:


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



来源:https://stackoverflow.com/questions/2587856/good-scalable-fault-tolerant-in-memory-database-with-linq-support-for-net

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!