当前位置: 首页>>代码示例>>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;未经允许,请勿转载。