當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。