MEMCACHE.CLOSE(3) 1 MEMCACHE.CLOSE(3) Memcache::close - Close memcached server connectionSYNOPSISbool Memcache::close (void )DESCRIPTIONMemcache.close(3) closes connection to memcached server. This function doesn't close persistent connections, which are closed only during web-server shutdown/restart. Also you can use memcache_close(3) function.RETURN VALUESReturns TRUE on success or FALSE on failure.EXAMPLESExample #1 Memcache.close(3) example <?php /* procedural API */ $memcache_obj = memcache_connect('memcache_host', 11211); /* do something here .. */ memcache_close($memcache_obj); /* OO API */ $memcache_obj = new Memcache; $memcache_obj->connect('memcache_host', 11211); /* do something here .. */ $memcache_obj->close(); ?>SEE ALSOMemcache.connect(3), Memcache.pconnect(3). PHP Documentation Group MEMCACHE.CLOSE(3)