How can I use System.Web.Caching.Cache in a Console application?

后端 未结 6 586
死守一世寂寞
死守一世寂寞 2021-02-01 03:47

Context: .Net 3.5, C#
I\'d like to have caching mechanism in my Console application.
Instead of re-inventing the wheel, I\'d like to use System.Web.Caching.Cache

相关标签:
6条回答
  • 2021-02-01 03:58

    The System.Web.Caching.Cache class relies on having its member "_cacheInternal" set by the HttpRuntime object.

    To use the System.Web.Caching classes you'd have to create an HttpRuntime object and setup the HttpRuntime.Cache property. You'd effectively have to emulate IIS.

    You're better off using other caching frameworks like:

    • Caching Application Block
    • Spring.net
    • NCache
    0 讨论(0)
  • 2021-02-01 04:05

    The documentation for the Cache constructor says that it is for internal use only. To get your Cache object, call HttpRuntime.Cache rather than creating an instance via the constructor.

    0 讨论(0)
  • 2021-02-01 04:06

    I ended on this page wondering the same thing. Here's what I'm doing (which I don't like but seems to work just fine):

    HttpContext context = HttpContext.Current;
    if (context == null)
    {
        HttpRequest request = new HttpRequest(string.Empty, "http://tempuri.org", string.Empty);
        HttpResponse response = new HttpResponse(new StreamWriter(new MemoryStream()));
        context = new HttpContext(request, response);
        HttpContext.Current = context;
    }
    this.cache = context.Cache;
    
    0 讨论(0)
  • 2021-02-01 04:12

    While the OP specified v3.5, the question was asked before v4 was released. To help anyone who finds this question and can live with a v4 dependency, the framework team created a new general purpose cache for this type of scenario. It's in the System.Runtime.Caching namespace: http://msdn.microsoft.com/en-us/library/dd997357%28v=VS.100%29.aspx

    The static reference to the default cache instance is: MemoryCache.Default

    0 讨论(0)
  • 2021-02-01 04:13

    Just use the Caching Application Block if you don't want to reinvent the wheel. If you still want to use the ASP.NET cache- see here. I'm pretty sure this only works with .NET 2.0 and above though. It simply wasn't possible to use the cache outside of ASP.NET in .NET 1.

    MSDN has a nice big warning on the page for the cache documentation too:

    The Cache class is not intended for use outside of ASP.NET applications. It was designed and tested for use in ASP.NET to provide caching for Web applications. In other types of applications, such as console applications or Windows Forms applications, ASP.NET caching might not work correctly.

    For a very lightweight solution, where you don't have to worry about expiration etc, then a dictionary object could suffice.

    0 讨论(0)
  • 2021-02-01 04:17

    Try

    public class AspnetDataCache : IDataCache
    {
        private readonly Cache _cache;
    
        public AspnetDataCache(Cache cache)
        {
            _cache = cache;
        }
    
        public AspnetDataCache()
            : this(HttpRuntime.Cache)
        {
    
        }
        public void Put(string key, object obj, TimeSpan expireNext)
        {
            if (key == null || obj == null)
                return;
            _cache.Insert(key, obj, null, DateTime.Now.Add(expireNext), TimeSpan.Zero);
        }
    
        public object Get(string key)
        {
            return _cache.Get(key);
        }
    
    
    0 讨论(0)
提交回复
热议问题