本文整理汇总了PHP中Illuminate\Cache\CacheManager::forever方法的典型用法代码示例。如果您正苦于以下问题:PHP CacheManager::forever方法的具体用法?PHP CacheManager::forever怎么用?PHP CacheManager::forever使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Illuminate\Cache\CacheManager
的用法示例。
在下文中一共展示了CacheManager::forever方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: forever
/**
* Store an item in the cache indefinitely.
*
* @param string $key
* @param mixed $value
*/
public function forever($key, $value)
{
$this->cache->forever($this->prefix . $key, $value);
}
示例2: forgetMenuMapByKey
/**
* forgetMenuMapByKey
*
* @param string $menuKey to forget on menu map
*
* @return void
*/
public function forgetMenuMapByKey($menuKey)
{
$menuMap = [];
if ($this->cache->has($this->menuMapKey)) {
$oldMenuMap = $this->cache->get($this->menuMapKey);
foreach ($oldMenuMap as $key => $value) {
if ($key !== $menuKey && $key !== $value) {
$menuMap[$key] = $value;
}
}
}
$this->cache->forever($this->menuMapKey, $menuMap);
}