SharedCache 를 저장소로 사용하는 Cache Provider입니다. SharedCacheClient를 제공합니다. 참고 : http://www.sharedcache.com/cms/
Inheritance: ICacheProvider
        public void FixtureSetUp()
        {
            _props    = new Dictionary <string, string>();
            _provider = new SharedCacheProvider();

            _provider.Start(_props);
        }
        public void SetUp() {
            _provider = new SharedCacheProvider();

            _props = new Dictionary<string, string>
                     {
                         { "expiration", "00:01:00" },
                         { "compressThreshold", "40960" }
                     };
        }
Example #3
0
        public void SetUp()
        {
            _provider = new SharedCacheProvider();

            _props = new Dictionary <string, string>
            {
                { "expiration", "00:01:00" },
                { "compressThreshold", "40960" }
            };
        }
        public void FixtureSetUp() {
            _props = new Dictionary<string, string>();
            _provider = new SharedCacheProvider();

            _provider.Start(_props);
        }