本文整理汇总了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;
}