Entity Framework and sharded database

耗尽温柔 提交于 2019-12-03 15:58:16

Have you investigated the following options:

  1. Clustering your DB (I assume it's SQL Server you are using)?
  2. Extracting some of your data (archived records, for example) into another table, then create a view with a UNION query to join the two tables together when you need a complete dataset view?
  3. Does your table have indices on it - if not, have you tried creating one?
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!