Memcache::flush -- Flush all existing items at the server
Syntax
bool Memcache::flush ( void )
Memcache::flush() immediately invalidates all
existing items. Memcache::flush() doesn't
actually free any resources, it only marks all the items as expired, so
occupied memory will be overwritten by new items.
Also you can use memcache_flush() function.
See example below.
Example 1. Memcache::flush() example
<?php
/* procedural API */ $memcache_obj = memcache_connect('memcache_host', 11211);
memcache_flush($memcache_obj);
/* OO API */
$memcache_obj = new Memcache; $memcache_obj->connect('memcache_host', 11211);
$memcache_obj->flush();
?>
Returns TRUE on success or FALSE on failure.
Php memcache flush Function syntax tag
memcache flush php code on this is provided for your study purpose, it will guide you to know how create and design a website using php. use it to practice and train your self online
Php memcache flush syntax tutorial
php tutorial guide and code design are for easy learning and programming. The code practice section provided at the top is for practising of this syntax. Use the code section up to practice your php programming online. Learning php is very easy, all you need is to use the examples on this site and practice them to perfect your skills.