コード例 #1
0
ファイル: NullCache.cs プロジェクト: emargee/CouchNet
 public void Add(CouchCacheEntry e)
 {
 }
コード例 #2
0
ファイル: HttpRuntimeCache.cs プロジェクト: emargee/CouchNet
 public void Add(CouchCacheEntry e)
 {
     HttpRuntime.Cache.Insert(CacheKey(e.Url), e, null, Cache.NoAbsoluteExpiration, new TimeSpan(0, ExpirationWindow, 0));
 }