public function setUp($notag = false)
 {
     $this->_instance = new Cm_Cache_Backend_Redis(array('server' => '127.0.0.1', 'port' => '6379', 'database' => '1', 'notMatchingTags' => TRUE, 'force_standalone' => $this->forceStandalone, 'compress_threshold' => 100, 'compression_lib' => 'gzip', 'use_lua' => TRUE, 'lua_max_c_stack' => self::LUA_MAX_C_STACK));
     $this->_instance->clean(Zend_Cache::CLEANING_MODE_ALL);
     $this->_instance->___scriptFlush();
     parent::setUp($notag);
 }