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


PHP CacheProvider::flushAll方法代碼示例

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


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

示例1: clear

 public function clear()
 {
     if (!$this->hasNamespace()) {
         $this->doctrineCache->flushAll();
     } else {
         $this->withNamespace()->deleteAll();
     }
 }
開發者ID:timetoogo,項目名稱:pinq,代碼行數:8,代碼來源:DoctrineCache.php

示例2: flush

 /**
  * Flush all cache entries
  *
  * @access public
  * @return void
  */
 public function flush()
 {
     if ($this->flush_namespace) {
         $this->adapted_provider->deleteAll();
     } else {
         $this->adapted_provider->flushAll();
     }
 }
開發者ID:onemightyroar,項目名稱:php-activerecord-components,代碼行數:14,代碼來源:DoctrineCacheAdapter.php

示例3: flushAllConfigurable

 /**
  * Flushes cached "configurable" flags for all configs.
  *
  * @return bool TRUE if the cache entries were successfully flushed; otherwise, FALSE.
  */
 public function flushAllConfigurable()
 {
     $this->localModelCache = [];
     return $this->modelCache->flushAll();
 }
開發者ID:northdakota,項目名稱:platform,代碼行數:10,代碼來源:ConfigCache.php

示例4: flush

 public function flush()
 {
     $this->storage = array();
     return $this->engine->flushAll();
 }
開發者ID:symforce,項目名稱:symforce-core,代碼行數:5,代碼來源:Cache.php

示例5: flushAll

 /**
  * {@inheritdoc}
  */
 public function flushAll()
 {
     return $this->provider->flushAll();
 }
開發者ID:jacobjjc,項目名稱:PageKit-framework,代碼行數:7,代碼來源:Cache.php

示例6: flushCache

 /**
  * Clears all stored items in Cache.
  *
  * @return boolean true on success.
  */
 public function flushCache()
 {
     return $this->cache->flushAll();
 }
開發者ID:Covert-Inferno,項目名稱:iveeCore,代碼行數:9,代碼來源:DoctrineCacheWrapper.php

示例7: deleteAll

 /**
  *
  */
 public function deleteAll()
 {
     $this->setList([]);
     $this->cache->flushAll();
 }
開發者ID:buuum,項目名稱:cache,代碼行數:8,代碼來源:Cache.php

示例8: clearCache

 /**
  * Clear the cache.
  */
 protected function clearCache()
 {
     self::$cache->flushAll();
 }
開發者ID:ratajczak,項目名稱:platformsh-cli,代碼行數:7,代碼來源:PlatformCommand.php

示例9: clear

 /**
  * {@inheritdoc}
  */
 public function clear()
 {
     return $this->cache->flushAll();
 }
開發者ID:rtheunissen,項目名稱:cache,代碼行數:7,代碼來源:DoctrineAdapter.php

示例10: clearCache

 /**
  * Clear the cache.
  */
 public function clearCache()
 {
     self::$cache->flushAll();
 }
開發者ID:commerceguys,項目名稱:platform-cli,代碼行數:7,代碼來源:Api.php

示例11: flushAll

 /**
  *
  */
 public function flushAll()
 {
     $this->cache->flushAll();
 }
開發者ID:Focus-Flow,項目名稱:silverstripe-cacheinclude,代碼行數:7,代碼來源:CacheInclude.php


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