使用 Dapper 在 MySQL Master/Slaves 上进行读/写分配
使用两个 IDbConnection 对象在 MySQL 主/从之间分配写入和读取时,dapper 会有任何问题吗?
Would dapper have any problems with using two IDbConnection objects for distributing Writes and Reads between MySQL Master/Slaves?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,一点也不。
Dapper 的身份缓存使用连接字符串作为密钥的一部分。这意味着您甚至可以在主服务器和从服务器中都将表设置为“列外顺序”,并且 dapper 可以很好地处理它。
No, not at all.
Dapper's identity cache uses the connection string as part of the key. This means you could even have your tables "out-of-column-order" in both the master and slave, and dapper would cope fine with it.