Exemple #1
0
        public static ICache GetCache(CacheLocation?location = null)
        {
            if (location == null)
            {
                return(_container.Resolve <ICache>(_defaultLocation.ToString()));
            }

            return(_container.Resolve <ICache>(location.ToString()));
        }
Exemple #2
0
        public static void Install(string redisConnectionString, CacheLocation defaultLocation, IUnityContainer container, LifetimeManager lifetimeManager)
        {
            _container       = container;
            _defaultLocation = defaultLocation;

            if (!String.IsNullOrWhiteSpace(redisConnectionString))
            {
                _container.RegisterType <ICacheClient>(lifetimeManager,
                                                       new InjectionFactory(c => RedisClientFactory.Instance.GetCurrent(redisConnectionString)));

                _container.RegisterType <ICache, RedisCache>(_defaultLocation.ToString());
            }
            else
            {
                _container.RegisterType <ICache, MemoryCache>(_defaultLocation.ToString());
            }


            _container.RegisterType <IMemoryCache, MemoryCache>();
        }