C# Class Contrib.Cache.Memcached.Services.MemcachedOutputCacheStorageProvider

Inheritance: IOutputCacheStorageProvider
Mostra file Open project: sebastienros/Contrib.Cache.Memcached

Public Methods

Method Description
GetCacheItem ( string key ) : Contrib.Cache.Models.CacheItem
GetCacheItems ( int skip, int count ) : IEnumerable
GetCacheItemsCount ( ) : int
MemcachedOutputCacheStorageProvider ( IMemcachedClientHolder clientHolder ) : System.Collections.Generic
Remove ( string key ) : void
RemoveAll ( ) : void
Set ( string key, Contrib.Cache.Models.CacheItem cacheItem ) : void

Method Details

GetCacheItem() public method

public GetCacheItem ( string key ) : Contrib.Cache.Models.CacheItem
key string
return Contrib.Cache.Models.CacheItem

GetCacheItems() public method

public GetCacheItems ( int skip, int count ) : IEnumerable
skip int
count int
return IEnumerable

GetCacheItemsCount() public method

public GetCacheItemsCount ( ) : int
return int

MemcachedOutputCacheStorageProvider() public method

public MemcachedOutputCacheStorageProvider ( IMemcachedClientHolder clientHolder ) : System.Collections.Generic
clientHolder IMemcachedClientHolder
return System.Collections.Generic

Remove() public method

public Remove ( string key ) : void
key string
return void

RemoveAll() public method

public RemoveAll ( ) : void
return void

Set() public method

public Set ( string key, Contrib.Cache.Models.CacheItem cacheItem ) : void
key string
cacheItem Contrib.Cache.Models.CacheItem
return void