©
本文檔使用 php中文網手册 發布
(PECL memcached >= 0.1.0)
Memcached::flush — 作废缓存中的所有元素
$delay
= 0
] ) Memcached::flush() 立即(默认)或者在delay
延迟后作废所有缓存中已经存在的元素。
在作废之后检索命令将不会有任何返回(除非在执行 Memcached::flush() 作废之后,该key下被重新存储过)。flush不会
真正的释放已有元素的内存, 而是逐渐的存入新元素重用那些内存。
delay
在作废所有元素之前等待的时间(单位秒)。
成功时返回 TRUE
, 或者在失败时返回 FALSE
。
如需要则使用 Memcached::getResultCode() 。
Example #1 Memcached::flush() 示例
<?php
$m = new Memcached ();
$m -> addServer ( 'localhost' , 11211 );
$m -> flush ( 10 );
?>