OpenAuth.Net/Infrastructure/Cache/CacheContext.cs

52 lines
1.3 KiB
C#
Raw Normal View History

2016-12-27 11:25:51 +08:00
// ***********************************************************************
// Assembly : Helper
// Author : yubaolee
// Created : 12-16-2016
//
// Last Modified By : yubaolee
// Last Modified On : 12-21-2016
// 使用微软默认带超时的Cache
// File: CacheContext.cs
// ***********************************************************************
using System;
using Microsoft.Extensions.Caching.Memory;
2016-12-27 11:25:51 +08:00
namespace Infrastructure.Cache
{
public class CacheContext : ICacheContext
{
private IMemoryCache _objCache;
public CacheContext(IMemoryCache objCache)
{
_objCache = objCache;
}
2016-12-27 11:25:51 +08:00
public override T Get<T>(string key)
{
return _objCache.Get<T>(key);
2016-12-27 11:25:51 +08:00
}
public override bool Set<T>(string key, T t, DateTime expire)
{
var obj = Get<T>(key);
if (obj != null)
{
Remove(key);
}
_objCache.Set(key, t, new MemoryCacheEntryOptions()
.SetAbsoluteExpiration(expire)); //绝对过期时间
2016-12-27 11:25:51 +08:00
return true;
}
public override bool Remove(string key)
{
_objCache.Remove(key);
return true;
}
}
}