php kirby Cache Object单

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php kirby Cache Object单相关的知识,希望对你有一定的参考价值。

$CACHE = cache::setup(c::get('cache.driver'), ['root'=>kirby()->roots->cache . DS . 'city', 'extension'=>'dates']);
$str_cacheKey = $arr_details['id'];
if ( $CACHE->exists($str_cacheKey) && !$CACHE->expired($str_cacheKey) ) {
  $arr_dates = $CACHE->get($str_cacheKey);
  $bol_hasData = false;
  /*
    .....
  */
} else {
  /*
    .....
  */
  $CACHE->set($str_cacheKey, $arr_dates, 20);
  $bol_hasData = true;
}

以上是关于php kirby Cache Object单的主要内容,如果未能解决你的问题,请参考以下文章

text Kirby nginx配置

markdown 简单的联系表格在Kirby 3

20171208校内训练

Magento,致命错误,“在非对象上调用 ... getAllOptions() ... Core\Model\Cache.php”

cache缓存

PHP进程锁