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


PHP CacheManager::forget方法代碼示例

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


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

示例1: set

 /**
  * @param $key
  * @param $value
  * @return bool
  */
 public function set($key, $value)
 {
     $setting = Setting::whereKey($key)->first();
     if (!is_object($setting)) {
         $setting = new Setting();
         $setting->key = $key;
     }
     $setting->value = $value;
     $setting->save();
     if ($this->application->isInstalled()) {
         $this->cache->forget($this->cache_key);
     }
     return true;
 }
開發者ID:darrengopower,項目名稱:framework,代碼行數:19,代碼來源:Factory.php

示例2: removeCacheLocale

 /**
  * Remove a locale from the cache.
  *
  * @param string $code
  */
 protected function removeCacheLocale($code)
 {
     $id = sprintf('translation.%s', $code);
     if ($this->cache->has($id)) {
         $this->cache->forget($id);
     }
 }
開發者ID:stevebauman,項目名稱:translation,代碼行數:12,代碼來源:Translation.php

示例3: forget

 /**
  * Forget a key in the cache.
  *
  * @param string $key
  *
  * @return void
  */
 protected function forget($key)
 {
     $this->cache->forget($this->key($key));
 }
開發者ID:joselfonseca,項目名稱:api,代碼行數:11,代碼來源:Handler.php

示例4: destroy

 /**
  * @param $key
  */
 public function destroy($key)
 {
     $this->cache->forget($key);
 }
開發者ID:weboap,項目名稱:visitor,代碼行數:7,代碼來源:CacheClass.php

示例5: delete

 /**
  * Deletes a setting.
  *
  * @param  string $key
  * @return void
  */
 public function delete($key)
 {
     // erase the local cache
     unset($this->settings[$key]);
     $this->cache->forget($this->key($key));
 }
開發者ID:patkruk,項目名稱:laravel-cached-settings,代碼行數:12,代碼來源:CacheHandler.php

示例6: forgetCollectionCache

 /**
  * Forget the collection cache.
  * 
  * @return \JasonLewis\Website\DocumentCollection
  */
 public function forgetCollectionCache()
 {
     $this->cache->forget($this->identifier);
     return $this;
 }
開發者ID:bamper,項目名稱:website,代碼行數:10,代碼來源:Collection.php

示例7: forgetCache

 /**
  * Clears the extensions cache.
  *
  * @return void
  */
 protected function forgetCache()
 {
     if ($this->cache) {
         $this->cache->forget(static::$cacheKey);
     }
 }
開發者ID:sohailaammarocs,項目名稱:lfc,代碼行數:11,代碼來源:Extension.php

示例8: forget

 /**
  * Remove an item from the cache.
  *
  * @param string $key
  * 
  * @return bool
  */
 public function forget($key)
 {
     return $this->cache->forget($this->prefix . $key);
 }
開發者ID:it-shura,項目名稱:mediawiki-sdk,代碼行數:11,代碼來源:LaravelCache.php

示例9: deleteCachedMenu

 /**
  * deleteCachedMenu
  *
  * @param string $menuId key of cache
  *
  * @return void
  */
 public function deleteCachedMenu($menuId)
 {
     $keyString = $this->getMenuCacheKeyString($menuId);
     $this->cache->forget($keyString);
     $itemKeyString = $this->getMenuItemCacheKeyString($menuId);
     $this->cache->forget($itemKeyString);
     $this->forgetMenuMapByKey($menuId);
 }
開發者ID:mint-soft-com,項目名稱:xpressengine,代碼行數:15,代碼來源:MenuCacheHandler.php

示例10: forget

 public function forget($key)
 {
     return $this->cache->forget($this->makeKey($key));
 }
開發者ID:vinelab,項目名稱:agency,代碼行數:4,代碼來源:CacheManager.php

示例11: removeCache

 /**
  * Removes the repository cache for the given item
  * enforcing a database reload.
  *
  * @return void
  */
 protected function removeCache()
 {
     $this->cache->forget('cartalyst.config');
 }
開發者ID:sohailaammarocs,項目名稱:lfc,代碼行數:10,代碼來源:Repository.php


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