예제 #1
0
        public RedisCache(IRedisCacheStrategy <Key, Value> strategy, RedisCacheConfiguration config)
        {
            _strategy = strategy ?? throw new RedisCacheException(ErrorInfo.STRATEGY_NOT_ALLOWED_NULL);

            if (config != null)
            {
                _strategy.SetConfig(config);
            }
        }
예제 #2
0
        public RedisCacheManager(IRedisCacheStrategy cache, IConfiguration configuration, ILoggerFactory factory)
        {
            cache.EnsureNotNull(() => new RedisCacheException());

            _cache = cache;
            _cache.SetConfig(new RedisCacheConfiguration()
            {
                ConnectString = configuration.GetSection("RedisCacheSettings:conn").Value,
                DB            = int.Parse(configuration.GetSection("RedisCacheSettings:db").Value)
            });

            logger = factory.CreateLogger <RedisCacheManager>();

            expireMillonseconds = int.Parse(configuration.GetSection("RedisCacheSettings:expireMilliseconds").Value);
            expireHours         = int.Parse(configuration.GetSection("RedisCacheSettings:expireHours").Value);
            expireMiutes        = int.Parse(configuration.GetSection("RedisCacheSettings:expireMiutes").Value);
            expireSeconds       = int.Parse(configuration.GetSection("RedisCacheSettings:expireSeconds").Value);
            expireDays          = int.Parse(configuration.GetSection("RedisCacheSettings:expireDays").Value);
        }
 public RedisCacheTester()
 {
     _cacheStrategy = new RedisStrategy();
 }
예제 #4
0
 public RedisStringCache(IRedisCacheStrategy <string, string> strategy, RedisCacheConfiguration config) : base(strategy, config)
 {
 }