Beispiel #1
0
 public RedisCacheInterceptor(IInterceptorCacheHandler interceptorCacheHandler) : base(interceptorCacheHandler, StorageLocation.Redis)
 {
 }
 protected CacheAsyncInterceptor(IInterceptorCacheHandler cacheHandler, StorageLocation storageLocation)
 {
     _cacheHandler    = cacheHandler;
     _storageLocation = storageLocation;
 }
Beispiel #3
0
 public InMemoryCacheInterceptor(IInterceptorCacheHandler interceptorCacheHandler) : base(interceptorCacheHandler, StorageLocation.Memory)
 {
 }