C# 클래스 OpenSlx.Lib.Services.Impl.MemCacheService

Very simple cache service using a dictionary to implement the cache. (for testing purposes)
상속: ICacheService
파일 보기 프로젝트 열기: nicocrm/OpenSlx

공개 메소드들

메소드 설명
Insert ( string key, object value, System cacheDependency, System.DateTime absoluteExpiration, System.TimeSpan slidingExpiration ) : void

We provide a partial implementation - cache dependency and expiration are not honored.

this ( string index ) : object

Retrieve cache item

메소드 상세

Insert() 공개 메소드

We provide a partial implementation - cache dependency and expiration are not honored.
public Insert ( string key, object value, System cacheDependency, System.DateTime absoluteExpiration, System.TimeSpan slidingExpiration ) : void
key string
value object
cacheDependency System
absoluteExpiration System.DateTime
slidingExpiration System.TimeSpan
리턴 void

this() 공개 메소드

Retrieve cache item
public this ( string index ) : object
index string
리턴 object