当前位置: 首页>>代码示例>>PHP>>正文


PHP wincache_ucache_clear函数代码示例

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


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


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