Created
October 26, 2012 14:52
-
-
Save timsavery/3959244 to your computer and use it in GitHub Desktop.
The Current Chatham.Libraries.Caching.TypedCache<T> Constructor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class TypedCache<T> { | |
private readonly Chatham.Libraries.Stats.IStatsClient _statsClient; | |
private readonly Chatham.Libraries.Caching.ICacheClient _cacheClient; | |
public TypedCache() { | |
this._statsClient = new Chatham.Libraries.Stats.StatsdClient(); | |
this._cacheClient = new Chatham.Libraries.MemcachedClient.MemcachedClient(); | |
} | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment