コード例 #1
0
ファイル: VCache.php プロジェクト: mikejw/elib-base
 public function __construct($host, $port, $driver_name = null, $enabled = true)
 {
     $this->enabled = $enabled;
     $this->driver = DriverManager::load($host, $port, $driver_name);
     $this->keys = null;
     $this->keys_key = 'keys';
 }
コード例 #2
0
ファイル: VCache.php プロジェクト: mikejw/elib-experimental
 public function __construct($host, $port, $driver_name = null)
 {
     $this->driver = DriverManager::load($host, $port, $driver_name);
 }