Memcache::pconnect -- Open memcached server persistent connection
Syntax
bool Memcache::pconnect ( string host [, int port [, int timeout]] )
Memcache::pconnect() is similar to
Memcache::connect() with the difference, that
the connection it establishes is persistent.
This connection is not closed after the end of script execution and
by Memcache::close() function.
Also you can use memcache_pconnect() function.
See example below.
Example 1. Memcache::pconnect() example
<?php
/* procedural API */ $memcache_obj = memcache_pconnect('memcache_host', 11211);
/* OO API */
$memcache_obj = new Memcache; $memcache_obj->pconnect('memcache_host', 11211);
?>
Returns TRUE on success or FALSE on failure.
See also
Memcache::connect().
Php memcache pconnect Function syntax tag
memcache pconnect 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 pconnect 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.