Caching Solutions

前端 未结 5 1569
执念已碎
执念已碎 2020-12-08 02:38

Has anyone done a thorough comparison of AppFabric and NCache or AppFabric and ScaleOut? We are currently looking to implement either AppFabric, NCache or ScaleOut for distr

5条回答
  •  旧巷少年郎
    2020-12-08 03:18

    The most used one is Memcached. for sure. we currently are starting using AppFabric as our dcache, as it easily integrates into our .net solutions, and has a good feature set, that we want to use.

    if you just do basic dcaching, make a abstraction of caching itself (or use the .net 4 System.Runtime.Caching.ObjectCache) so you are safe if you want to do changes. or want to stress test more solutions.

    Also, depending on your App architecture, think of using more entities/instances of your DCache, as different parts maybe favor different systems.

提交回复
热议问题