• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP wincache_ucache_clear函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中wincache_ucache_clear函数的典型用法代码示例。如果您正苦于以下问题:PHP wincache_ucache_clear函数的具体用法?PHP wincache_ucache_clear怎么用?PHP wincache_ucache_clear使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了wincache_ucache_clear函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: remove

 public function remove($key)
 {
     if ($key == 'all') {
         return wincache_ucache_clear() ? true : false;
     } else {
         if (wincache_ucache_exists($this->type . '_' . $key)) {
             return wincache_ucache_delete($this->type . '_' . $key) ? true : false;
         }
         return false;
     }
     return false;
 }
开发者ID:blanc0,项目名称:cecilia,代码行数:12,代码来源:WinCache.php


示例2: cs_cache_clear

function cs_cache_clear()
{
    wincache_ucache_clear();
    $unicode = extension_loaded('unicode') ? 1 : 0;
    $where = "options_mod = 'clansphere' AND options_name = 'cache_unicode'";
    cs_sql_update(__FILE__, 'options', array('options_value'), array($unicode), 0, $where);
}
开发者ID:aberrios,项目名称:WEBTHESGO,代码行数:7,代码来源:wincache.php


示例3: tearDown

 public function tearDown()
 {
     if (function_exists('wincache_ucache_clear')) {
         wincache_ucache_clear();
     }
     parent::tearDown();
 }
开发者ID:rajanlamic,项目名称:IntTest,代码行数:7,代码来源:WinCacheTest.php


示例4: clearUserCache

 /**
  * @return string
  */
 private static function clearUserCache()
 {
     if (function_exists('apc_clear_cache') && function_exists('opcache_reset') && apc_clear_cache()) {
         return 'APC User Cache: success.';
     }
     if (function_exists('apc_clear_cache') && apc_clear_cache('user')) {
         return 'APC User Cache: success.';
     }
     if (function_exists('wincache_ucache_clear') && wincache_ucache_clear()) {
         return 'Wincache User Cache: success.';
     }
     throw new \RuntimeException('User Cache: failure.');
 }
开发者ID:Zubis,项目名称:AcceleratorCacheBundle,代码行数:16,代码来源:AcceleratorCacheClearer.php


示例5: flush

 /**
  * {@inheritDoc}
  */
 public function flush($namespace = null)
 {
     if (!$namespace) {
         return wincache_ucache_clear();
     } else {
         $namespace = implode($this->getNamespaceDelimiter(), (array) $namespace);
         $info = wincache_ucache_info(false);
         // iterate over all entries and delete matching
         foreach ($info['ucache_entries'] as $entry) {
             $key = $entry['key_name'];
             if (0 === strpos($key, $namespace)) {
                 wincache_ucache_delete($key);
             }
         }
     }
     return true;
 }
开发者ID:Nyholm,项目名称:acache,代码行数:20,代码来源:WincacheCache.php


示例6: clear

 /**
  * キャッシュを削除する.
  *
  * doctrine, profiler, twig によって生成されたキャッシュディレクトリを削除する.
  * キャッシュは $app['config']['root_dir'].'/app/cache' に生成されます.
  *
  * @param Application $app
  * @param boolean $isAll .gitkeep を残してすべてのファイル・ディレクトリを削除する場合 true, 各ディレクトリのみを削除する場合 false
  * @param boolean $isTwig Twigキャッシュファイルのみ削除する場合 true
  * @return boolean 削除に成功した場合 true
  */
 public static function clear($app, $isAll, $isTwig = false)
 {
     $cacheDir = $app['config']['root_dir'] . '/app/cache';
     $filesystem = new Filesystem();
     if ($isAll) {
         $finder = Finder::create()->in($cacheDir)->notName('.gitkeep');
         $filesystem->remove($finder);
     } elseif ($isTwig) {
         if (is_dir($cacheDir . '/twig')) {
             $finder = Finder::create()->in($cacheDir . '/twig');
             $filesystem->remove($finder);
         }
     } else {
         if (is_dir($cacheDir . '/doctrine')) {
             $finder = Finder::create()->in($cacheDir . '/doctrine');
             $filesystem->remove($finder);
         }
         if (is_dir($cacheDir . '/profiler')) {
             $finder = Finder::create()->in($cacheDir . '/profiler');
             $filesystem->remove($finder);
         }
         if (is_dir($cacheDir . '/twig')) {
             $finder = Finder::create()->in($cacheDir . '/twig');
             $filesystem->remove($finder);
         }
         if (is_dir($cacheDir . '/translator')) {
             $finder = Finder::create()->in($cacheDir . '/translator');
             $filesystem->remove($finder);
         }
     }
     if (function_exists('opcache_reset')) {
         opcache_reset();
     }
     if (function_exists('apc_clear_cache')) {
         apc_clear_cache('user');
         apc_clear_cache();
     }
     if (function_exists('wincache_ucache_clear')) {
         wincache_ucache_clear();
     }
     return true;
 }
开发者ID:ec-cube,项目名称:ec-cube,代码行数:53,代码来源:Cache.php


示例7: _resetExternal

 /**
  * @see SugarCacheAbstract::_resetExternal()
  */
 protected function _resetExternal()
 {
     wincache_ucache_clear();
 }
开发者ID:omusico,项目名称:sugar_work,代码行数:7,代码来源:SugarCacheWincache.php


示例8: resetCache

 public function resetCache()
 {
     wincache_ucache_clear();
 }
开发者ID:cedwards-reisys,项目名称:nexus-web,代码行数:4,代码来源:wincache.php


示例9: internalClear

 /**
  * Internal method to clear items off all namespaces.
  *
  * Options:
  *  - ttl <float>
  *    - The time-to-life
  *
  * @param  int   $normalizedMode Matching mode (Value of Adapter::MATCH_*)
  * @param  array $normalizedOptions
  * @return boolean
  * @throws Exception
  * @see    clearByNamespace()
  */
 protected function internalClear(&$normalizedMode, array &$normalizedOptions)
 {
     return wincache_ucache_clear();
 }
开发者ID:bradley-holt,项目名称:zf2,代码行数:17,代码来源:WinCache.php


示例10: flush

 /**
  * Remove all items from the cache.
  *
  * @return void
  */
 public function flush()
 {
     wincache_ucache_clear();
 }
开发者ID:Thomvh,项目名称:turbine,代码行数:9,代码来源:WinCacheStore.php


示例11: delete_all

 /**
  * Delete all cache entries.
  * 
  * Beware of using this method when
  * using shared memory cache systems, as it will wipe every
  * entry within the system for all clients.
  * 
  *     // Delete all cache entries in the wincache group
  *     Cache::instance('wincache')->delete_all();
  *
  * @return  boolean
  */
 public function delete_all()
 {
     return wincache_ucache_clear();
 }
开发者ID:reznikds,项目名称:Reznik,代码行数:16,代码来源:wincache.php


示例12: flush

 public function flush($options= array()) {
     return wincache_ucache_clear();
 }
开发者ID:raf3600,项目名称:revolution,代码行数:3,代码来源:xpdowincache.class.php


示例13: clear

 /**
  * @see wincache_ucache_clear();
  */
 public function clear()
 {
     $result = wincache_ucache_clear();
     $this->clearInfoArrays();
     return $result;
 }
开发者ID:veloper,项目名称:DDWinUCache,代码行数:9,代码来源:class.ddwinucache.php


示例14: clean

 /**
  * Remove all keys and value from cache
  */
 public function clean()
 {
     wincache_ucache_clear();
     return true;
 }
开发者ID:mactronique,项目名称:phpcache,代码行数:8,代码来源:WincacheDriver.php


示例15: clear

 function clear()
 {
     wincache_ucache_clear();
 }
开发者ID:scotchphp,项目名称:scotch,代码行数:4,代码来源:MemoryCache.php


示例16: flushItems

 /**
  * Remove all items from the cache.
  *
  * @return void
  */
 protected function flushItems()
 {
     wincache_ucache_clear();
 }
开发者ID:defra91,项目名称:levecchiecredenze.it,代码行数:9,代码来源:WinCacheStore.php


示例17: driver_clean

 function driver_clean($option = array())
 {
     wincache_ucache_clear();
     return true;
 }
开发者ID:rylanb,项目名称:Play-Later,代码行数:5,代码来源:wincache.php


示例18: driverClear

 /**
  * @return bool
  */
 protected function driverClear()
 {
     return wincache_ucache_clear();
 }
开发者ID:jigoshop,项目名称:Jigoshop2,代码行数:7,代码来源:Driver.php


示例19: clear

 /**
  * 清除缓存
  * @access public
  * @param string $tag 标签名
  * @return boolean
  */
 public function clear($tag = null)
 {
     if ($tag) {
         $keys = $this->getTagItem($tag);
         foreach ($keys as $key) {
             wincache_ucache_delete($key);
         }
         $this->rm('tag_' . md5($tag));
         return true;
     } else {
         return wincache_ucache_clear();
     }
 }
开发者ID:top-think,项目名称:framework,代码行数:19,代码来源:Wincache.php


示例20: flushValues

 /**
  * Deletes all values from cache.
  * This is the implementation of the method declared in the parent class.
  * @return boolean whether the flush operation was successful.
  * @since 1.1.5
  */
 protected function flushValues()
 {
     return wincache_ucache_clear();
 }
开发者ID:charlymanja,项目名称:traceper,代码行数:10,代码来源:CWinCache.php



注:本文中的wincache_ucache_clear函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP wincache_ucache_dec函数代码示例发布时间:2022-05-23
下一篇:
PHP wincache_ucache_add函数代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap