AppFabric在多环境下的推荐使用方式
- 三种环境:开发、登台和生产
- 每个环境都有自己的数据库,可能与另一个环境的数据库相同也可能不同
- 只有一个 AppFabric 缓存服务器
我需要能够使用缓存,但同时保留为三个环境中的每一个环境单独缓存。
有哪些方法可以做到这一点?
谢谢!
- Three environments: dev, staging, and production
- Each environment has their own database that may or may not be the same as another environment's database
- There is only one AppFabric cache server
I need to be able to use caching, but at the same time keep the cache separate for each of the three environments.
How are some ways to do this?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用命名缓存和缓存区域来满足您不同的环境需求。使名称/区域可在 .config 文件或数据库表中配置。将缓存的数据放入特定于环境的缓存或区域中可以为您提供分区。
Use named caches and cache regions to fit your different environmental needs. Make the names/regions configurable in a .config file or DB table. Putting cached data in environment-specific caches or regions gives you partitioning.