Cache server for .NET(Example Memcached)

前端 未结 6 1100
攒了一身酷
攒了一身酷 2020-12-24 09:48

I am looking for cache server for .NET. What can you suggest? As i know memcached has provider for .net. Is it good enough to use for .net in production?

相关标签:
6条回答
  • 2020-12-24 10:25

    though there are numbers of third party caching solutions are available for .NET but if we narrow done the research based upon Google and word of mouth, it might be 1) Memcached 2) Appfabric 3) NCache

    firs two are free/open source software so they have some limitations in it, while on the other hand NCache has a lot to offer as compared to others, but you have to buy it. but it has also a free version available called as NCache Express. below are two important links in this regard,

    Video on NCache Vs AppFabric

    Blog on NCache Vs AppFabric

    0 讨论(0)
  • 2020-12-24 10:27

    See the post Top caching libraries for .NET for several options, including both free and commercial. The choice will vary based on your actual need.

    0 讨论(0)
  • 2020-12-24 10:29

    If you're willing to run your cache server in Linux, you could use Redis, and use the BookSleeve library from .NET, this is what StackOverflow uses

    http://code.google.com/p/booksleeve/

    0 讨论(0)
  • 2020-12-24 10:33

    Scale Out State Server is an excellent solution. It's not free, but for large-scale applications, it's one of the best options that we found.

    NCache is another option, though I have no experience with it.

    For enterprise scale (and budget) there's Oracle's Coherence. It works extremely well, though it's extremely pricey.

    Here's another SO question with some information that may or may not be helpful:
    Caching Solutions

    0 讨论(0)
  • 2020-12-24 10:39

    AppFabric is another popular solution from Microsoft.

    0 讨论(0)
  • 2020-12-24 10:43

    Memached is plenty good for production, probably best using the enyim provider.

    Couchbase provide a good web ui and easy memcached install on windows. Free if on a single server. It's great to be able to monitor your cache instance.

    They have paid for solutions but and their own server.

    AppFabric as mentioned is another obvious candidate but not a mature as memcached. AppFabric is an application server and can also provide distributed caching like membase

    0 讨论(0)
提交回复
热议问题