包 | system.caching |
---|---|
继承 | class CMemCacheServerConfiguration » CComponent |
源自 | 1.0 |
版本 | $Id: CMemCache.php 3515 2011-12-28 12:29:24Z mdomba $ |
源码 |
CMemCacheServerConfiguration代表单个memcache的服务器的配置数据。
参见http://www.php.net/manual/en/function.Memcache-addServer.php 了解每个配置属性的详细解释。
参见http://www.php.net/manual/en/function.Memcache-addServer.php 了解每个配置属性的详细解释。
公共属性
属性 | 类型 | 描述 | 定义在 |
---|---|---|---|
host | string | memcache服务器主机名或者IP地址 | CMemCacheServerConfiguration |
persistent | boolean | 是否使用持久连接 | CMemCacheServerConfiguration |
port | integer | memcache服务器端口 | CMemCacheServerConfiguration |
retryInterval | integer | 重连失败服务器的频率(以秒为单位) | CMemCacheServerConfiguration |
status | boolean | 若该服务器在失败后需要标志为在线 | CMemCacheServerConfiguration |
timeout | integer | 以秒为单位的数值,连接到服务器的超时时间。 | CMemCacheServerConfiguration |
weight | integer | 在所有服务器中使用这台服务器的概率。 | CMemCacheServerConfiguration |
公共方法
属性详细
host
属性
public string $host;
memcache服务器主机名或者IP地址
persistent
属性
public boolean $persistent;
是否使用持久连接
port
属性
public integer $port;
memcache服务器端口
retryInterval
属性
public integer $retryInterval;
重连失败服务器的频率(以秒为单位)
status
属性
public boolean $status;
若该服务器在失败后需要标志为在线
timeout
属性
public integer $timeout;
以秒为单位的数值,连接到服务器的超时时间。
weight
属性
public integer $weight;
在所有服务器中使用这台服务器的概率。
方法详细
__construct()
方法
public void __construct(array $config)
| ||
$config | array | memcache服务器配置列表。 |
public function __construct($config)
{
if(is_array($config))
{
foreach($config as $key=>$value)
$this->$key=$value;
if($this->host===null)
throw new CException(Yii::t('yii','CMemCache server configuration must have "host" value.'));
}
else
throw new CException(Yii::t('yii','CMemCache server configuration must be an array.'));
}
Constructor.