本文整理匯總了PHP中Memcached::setTtl方法的典型用法代碼示例。如果您正苦於以下問題:PHP Memcached::setTtl方法的具體用法?PHP Memcached::setTtl怎麽用?PHP Memcached::setTtl使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Memcached
的用法示例。
在下文中一共展示了Memcached::setTtl方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: init
/**
* Init.
* @param string $name
* @param array|null $options
* @return Froq\Cache\Agent\AgentInterface
*/
public static final function init(string $name, array $options = null) : AgentInterface
{
// default = true
$once = (bool) ($options['once'] ?? true);
if ($once && isset(self::$agents[$name])) {
return self::$agents[$name];
}
$agent = null;
switch (strtolower($name)) {
case self::AGENT_FILE:
$agent = new File();
break;
case self::AGENT_APCU:
$agent = new Apcu();
break;
case self::AGENT_REDIS:
$agent = new Redis();
break;
case self::AGENT_MEMCACHED:
$agent = new Memcached();
break;
default:
throw new CacheException("Unimplemented agent name '{$name}' given!");
}
// set ttl if provided
isset($options['ttl']) && $agent->setTtl($options['ttl']);
// set host/port if provided (redis, memcached)
if (isset($options['host']) && method_exists($agent, 'setHost')) {
$agent->setHost($options['host']);
}
if (isset($options['port']) && method_exists($agent, 'setPort')) {
$agent->setPort($options['port']);
}
// set dir (file)
if (isset($options['dir']) && method_exists($agent, 'setDir')) {
$agent->setDir($options['dir']);
}
// init (connect etc)
$agent->init();
if ($once) {
self::$agents[$name] = $agent;
}
return $agent;
}