PHP Redis /* * 20160607 * http://bluebreeze.co.kr/978 * required php-redis */ define('ENVIRONMENT', 'testing'); define('REDIS_HOST', 'localhost'); define('REDIS_PORT', 6379); class RedisClient { private $isCache = FALSE; private $redis = FALSE; private $key = 'Cache'; private $cachedKey = Array(); private $setCachedKey = Array(); public function __construct(){ if( class_exists('Redis') ) { retur..