Пример #1
0
 /**
  * Returns the version of the Redis server we're connecting to.
  *
  * @return string
  */
 protected function getVersion()
 {
     if ($this->version === null) {
         $info = $this->client->info();
         $this->version = $info['redis_version'];
     }
     return $this->version;
 }