iredis = new iredis(); $this->redis = $this->iredis->getRedis(); } public function __destruct() { } // get how many keys in the current redis public function getSize() { return $this->redis->dbSize(); } public function flushAll() { $this->redis->flushAll(); } public function flushDB() { $this->redis->flushDB(); } public function info() { $this->redis->info(); } } ?>