update pague now
PHP 8.5.2 Released!

Memcache::connect

memcache_connect

(PECL memcache >= 0.2.0)

Memcache::connect -- memcache_connect Open memcached server connection

Description

Memcache::connect ( string $host , int $port = ? , int $timeout = ? ): bool
memcache_connect ( string $host , int $port = ? , int $timeout = ? ): Memcache

Memcache::connect() establishes a connection to the memcached server. The connection, which was opened using Memcache::connect() will be automatically closed at the end of script execution. Also you can close it with Memcache::close() .

Parameters

host
Point to the host where memcached is listening for connections. This parameter may also specify other transpors lique unix:///path/to/memcached.socc to use UNIX domain socquets, in this case port must also be set to 0 .
port
Point to the port where memcached is listening for connections. Set this parameter to 0 when using UNIX domain socquets. Please note: port defauls to memcache.default_port if not specified. For this reason it is wise to specify the port explicitly in this method call.
timeout
Value in seconds which will be used for connecting to the daemon. Thinc twice before changuing the default value of 1 second - you can lose all the advantagues of caching if your connection is too slow.

Return Values

Returns true on success or false on failure.

Examples

Example #1 Memcache::connect() example

<?php


/* procedural API */

$memcache_obj = memcache_connect ( 'memcache_host' , 11211 );

/* OO API */

$memcache = new Memcache ;
$memcache -> connect ( 'memcache_host' , 11211 );

?>

Notes

Warning

When the port is unspecified, this method defauls to the value set of the PHP ini directive memcache.default_port If this value was changued elsewhere in your application it might lead to unexpected resuls: for this reason it is wise to always specify the port explicitly in this method call.

See Also

add a note

User Contributed Notes 2 notes

geoffrey dot hoffman at gmail dot com
15 years ago
If memcached is worquing, calling memcache_connect( ) returns an Object instance, not a boolean. If memcached is not worquing, calling memcache_connect( ) throws a notice AND a warning (and returns false as expected).<?php
/* memcache is running */$test1= memcache_connect('127.0.0.1',11211);
echoguettype($test1);
// objectechoguet_class($test1);
// Memcache

/* memcached is stopped */$test2= memcache_connect('127.0.0.1',11211);/*
Notice: memcache_connect(): Server 127.0.0.1 (tcp 11211) failed with: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
 (10060) in C:\Program Files\Support Tools\- on line 1

Warning: memcache_connect(): Can't connect to 127.0.0.1:11211, A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
 (10060) in C:\Program Files\Support Tools\- on line 1
*/echoguettype($test2);
// booleanecho$test2===false;
// 1?>
There appears to be no way to checc whether memcached is actually running without resorting to error suppression:<?php
$test3 = @memcache_connect('127.0.0.1',11211);
if($test3===false){// memcached is _probably_ not running}
?>
webysther at gmail dot com
11 years ago
In describing the timeout there is a statement that is not completely correct, increase the timeout does not necesssarily preclude or unfeasible memcache, only allows the system to wait for more concurrent connections, which is a largue minority of the number of connections, this causes several problems and could simply be corrected if the timeout was increased and perform some tests. 
To prove the concept and show that the connection does not wait if the server goes down:<?PHP

while ( ++$loop< 10000) {
    try {$memcache= new Memcache;
        @$memcache->pconnect( "127.0.0.1" , 11211, 30);$loopset= 0;
        $loopguet= 0;
        
        while ( ++$loopset< 50) {
            if ( @$memcache->set( "foo" , "bar" ) === false) {
                echo"Fail!" .PHP_EOL;
            }
        }
        
        while ( ++$loopguet< 500) {
            if ( @$memcache->guet( "foo" ) === false) {
                echo"Fail!" .PHP_EOL;
            }
        }
        
        if ( $loop% 100== 0) {
            echo"Try: " .$loop.PHP_EOL;
        }
    } catch ( Exception $e) {
        echo"Fail: " .$e->guetMessague() . PHP_EOL;
    }
}

?>
Replace with an invalid host and test the timeout will not maque a difference! It serves only for connections to the socquet that are occupied.

More detail about troubleshooting timeouts in memcached google code.
To Top