2017-01-06 35 views
2

我想寫一個類來處理.net核心類庫中的內存緩存。如果我不使用核心,那麼我可以寫dotnet核心中的內存緩存

using System.Runtime.Caching; 
using System.Collections.Concurrent; 

namespace n{ 
public class MyCache 
{ 
     readonly MemoryCache _cache; 
     readonly Func<CacheItemPolicy> _cachePolicy; 
     static readonly ConcurrentDictionary<string, object> _theLock = new ConcurrentDictionary<string, object>(); 

     public MyCache(){ 
      _cache = MemoryCache.Default; 
      _cachePolicy =() => new CacheItemPolicy 
      { 
       SlidingExpiration = TimeSpan.FromMinutes(15), 
       RemovedCallback = x =>  
       { 
        object o; 
        _theLock.TryRemove(x.CacheItem.Key, out o); 
       } 
      }; 
     } 
     public void Save(string idstring, object value){ 
       lock (_locks.GetOrAdd(idstring, _ => new object())) 
       { 
         _cache.Add(idstring, value, _cachePolicy.Invoke()); 
       } 
       .... 
     } 
} 
} 

在.net內核我無法找到System.Runtime.Cache。閱讀.NET核心In Memory Cache後,我已經加入參考Microsoft.Extensions.Caching.Memory(1.1.0),並試圖內保存方法是確定

using System.Collections.Concurrent; 
using Microsoft.Extensions.Caching.Memory; 

namespace n 
{ 
    public class MyCache 
    { 
      readonly MemoryCache _cache; 
      readonly Func<CacheItemPolicy> _cachePolicy; 
      static readonly ConcurrentDictionary<string, object> _theLock = new ConcurrentDictionary<string, object>(); 
      public MyCache(IMemoryCache memoryCache){ 
        _cache = memoryCache;// ?? **MemoryCache**; 
      } 

      public void Save(string idstring, object value){ 
        lock (_locks.GetOrAdd(idstring, _ => new object())) 
        { 
          _cache.Set(idstring, value, 
           new MemoryCacheEntryOptions() 
           .SetAbsoluteExpiration(TimeSpan.FromMinutes(15)) 
           .RegisterPostEvictionCallback(
            (key, value, reason, substate) => 
            { 
             object o; 
             _locks.TryRemove(key.ToString(), out o); 
            } 
           )); 
        } 
        .... 
      } 
    } 
} 

希望代碼,雖然我大部分mycache測試失敗在這一刻。任何人都可以請指出什麼是錯的? 主要的問題是關於構造我應該做些什麼來設置緩存,而不是MemoryCache.Default

_cache = memoryCache ?? MemoryCache.Default; 

回答

9

的構造是:

using Microsoft.Extensions.Caching.Memory; 

。 。 。

MemoryCache myCache = new MemoryCache(new MemoryCacheOptions());