Memcached::flush
Invalidate all items in the cache
Description
public bool Memcached::flush(int $delay
= 0)
Parameters
-
delay
-
Number of seconds to wait before invalidating the items.
Return Values
Returns true
on success or false
on failure.
Use Memcached::getResultCode if necessary.
Examples
Example #1 Memcached::flush example
<?php
$m = new Memcached();
$m->addServer('localhost', 11211);
/* flush all items in 10 seconds */
$m->flush(10);
?>