Toggle navigation
Hot Examples
ZH
EN
RU
DE
FR
ES
PT
IT
JP
ZH
KO
PHP
PHP
C#
Java
Go
C++
Python
JS
TS
搜索
PHP Doctrine\Common\Cache CacheProvider::doFlush示例
编程语言:
PHP
命名空间/包名称:
Doctrine\Common\Cache
类/类型:
CacheProvider
方法/功能:
doFlush
hotexamples.com的示例:
1
PHP Doctrine\Common\Cache CacheProvider::doFlush - 已找到1个示例
。这些是从开源项目中提取的最受好评的
Doctrine\Common\Cache\CacheProvider::doFlush
现实PHP示例。您可以评价示例,以帮助我们提高示例质量。
常用方法
显示
隐藏
contains(30)
delete(30)
save(30)
fetch(30)
setNamespace(20)
deleteAll(19)
flushAll(11)
expects(7)
getNamespace(7)
setRedis(4)
setMemcached(4)
setMemcache(4)
getStats(3)
method(1)
doDelete(1)
doFetch(1)
doContains(1)
doSave(1)
doGetStats(1)
doFlush(1)
getDriver(1)
常用方法
contains (30)
delete (30)
save (30)
fetch (30)
setNamespace (20)
deleteAll (19)
flushAll (11)
expects (7)
getNamespace (7)
setRedis (4)
常用方法
setMemcached (4)
setMemcache (4)
getStats (3)
method (1)
doDelete (1)
doFetch (1)
doContains (1)
doSave (1)
doGetStats (1)
doFlush (1)
getDriver (1)
常用方法
getDriver (1)
doFlush()
abstract
protected
method
Flushes all cache entries.
abstract
protected
doFlush
( ) :
boolean
return
boolean
TRUE if the cache entries were successfully flushed, FALSE otherwise.
CacheProvider Class Documentation
示例#1
0
显示文件
文件:
AbstractCacheProviderDecorator.php
项目:
emilyreese/DoctrineCacheExtension
/** * @inheritdoc */ protected function doFlush() { return $this->cacheProvider->doFlush(); }
x