/** * Sınıfı başlatır * * @param array $cache */ public function __construct($cache = []) { parent::__construct($cache); $this->checkXcacheExtension(); }
/** * Sınıfı başlatır * * @param array $cache * @param Memcache $memcache */ public function __construct($cache = [], Memcache $memcache = null) { parent::__construct($cache); $this->setMemcacheObj($memcache); $this->checkMemcacheExtension(); }
/** * Sınıfı başlatır * * @param array $cache * @param Redis $redis */ public function __construct($cache = [], Redis $redis = null) { parent::__construct($cache); $this->setRedisObj($redis); $this->checkRedisExtension(); }