當前位置: 首頁>>代碼示例>>PHP>>正文


PHP LuLu::setCache方法代碼示例

本文整理匯總了PHP中source\LuLu::setCache方法的典型用法代碼示例。如果您正苦於以下問題:PHP LuLu::setCache方法的具體用法?PHP LuLu::setCache怎麽用?PHP LuLu::setCache使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在source\LuLu的用法示例。


在下文中一共展示了LuLu::setCache方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getMenusByCategory

 public static function getMenusByCategory($category, $fromCache = true)
 {
     $cachekey = self::CachePrefix . $category;
     $values = $fromCache ? LuLu::getCache($cachekey) : false;
     if ($values === false) {
         $values = self::getArrayTreeInternal($category, 0, 0);
         LuLu::setCache($cachekey, $values);
     }
     return $values;
 }
開發者ID:hucongyang,項目名稱:lulucms2,代碼行數:10,代碼來源:Menu.php

示例2: getModel

 public static function getModel($id, $fromCache = true)
 {
     $cacheKey = self::CachePrefix . $id;
     $value = $fromCache ? LuLu::getCache($cacheKey) : false;
     if ($value === false) {
         $value = Config::findOne(['id' => $id]);
         if ($value !== null) {
             LuLu::setCache($cacheKey, $value);
         }
     }
     return $value;
 }
開發者ID:hucongyang,項目名稱:lulucms2,代碼行數:12,代碼來源:Config.php

示例3: getData

 public static function getData($code, $other = [], $fromCache = true)
 {
     $cacheKey = self::CachePrefix . $code;
     $values = $fromCache ? LuLu::getCache($cacheKey) : false;
     if ($values === false) {
         $fragment = self::findOne(['code' => $code]);
         if ($fragment == null) {
             return [];
         }
         $query = $fragment->type === 1 ? Fragment1Data::find() : Fragment2Data::find();
         $query->where(['fragment_id' => $fragment->id, 'status' => 1]);
         $query->orderBy('sort_num asc');
         $values = $query->all();
         LuLu::setCache($cacheKey, $values);
     }
     $offset = isset($other['offset']) ? $other['offset'] : 0;
     $limit = isset($other['limit']) ? $other['limit'] : count($values) - $offset;
     return array_slice($values, $offset, $limit, true);
 }
開發者ID:sym660,項目名稱:lulucms2,代碼行數:19,代碼來源:Fragment.php

示例4: getTaxonomyById

 public static function getTaxonomyById($id, $fromCache = true)
 {
     if ($id < 0 || empty($id)) {
         return null;
     }
     $cacheKey = self::CachePrefix . $id;
     $value = $fromCache ? LuLu::getCache($cacheKey) : false;
     if ($value === false) {
         $value = self::findOne(['id' => $id]);
         if ($value !== null) {
             LuLu::setCache($cacheKey, $value);
         }
     }
     return $value;
 }
開發者ID:Nathanyang,項目名稱:lulucms2,代碼行數:15,代碼來源:Taxonomy.php

示例5: getPermissionsByRole

 public function getPermissionsByRole($role, $fromCache = true)
 {
     $cacheKey = self::CachePrefix . $role;
     $value = $fromCache ? LuLu::getCache($cacheKey) : false;
     if ($value === false) {
         $query = new Query();
         $query->select(['p.id', 'p.category', 'p.name', 'p.description', 'p.form', 'p.default_value', 'p.rule', 'p.sort_num', 'r.role', 'r.value']);
         $query->from(['p' => $this->permissionTable, 'r' => $this->relationTable]);
         $query->where('r.permission=p.id');
         $query->andWhere(['r.role' => $role]);
         $rows = $query->all();
         $value = $this->convertPermissionValue($rows);
         LuLu::setCache($cacheKey, $value);
     }
     return $value;
 }
開發者ID:hucongyang,項目名稱:lulucms2,代碼行數:16,代碼來源:RbacService.php


注:本文中的source\LuLu::setCache方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。