Ejemplo n.º 1
0
 public static function predis($dbname, $host)
 {
     if (!is_null(self::$redisConection)) {
         return;
     }
     Predis\Autoloader::register();
     self::$redisConection = new Predis\Client(array('host' => $host, 'database' => $dbname));
 }