Man Page: memcache.getserverstatus
Operating Environment: php
Section: 3
MEMCACHE.GETSERVERSTATUS(3) 1 MEMCACHE.GETSERVERSTATUS(3) Memcache::getServerStatus - Returns server statusSYNOPSISint Memcache::getServerStatus (string $host, [int $port = 11211])DESCRIPTIONMemcache.getServerStatus(3) returns a the servers online/offline status. You can also use memcache_get_server_status(3) function. Note This function has been added to Memcache version 2.1.0.PARAMETERSo $host - Point to the host where memcached is listening for connections. o $port - Point to the port where memcached is listening for connections.RETURN VALUESReturns a the servers status. 0 if server is failed, non-zero otherwiseEXAMPLESExample #1 Memcache.getServerStatus(3) example <?php /* OO API */ $memcache = new Memcache; $memcache->addServer('memcache_host', 11211); echo $memcache->getServerStatus('memcache_host', 11211); /* procedural API */ $memcache = memcache_connect('memcache_host', 11211); echo memcache_get_server_status($memcache, 'memcache_host', 11211); ?>SEE ALSOMemcache.addServer(3), Memcache.setServerParams(3). PHP Documentation Group MEMCACHE.GETSERVERSTATUS(3)
| Related Man Pages |
|---|
| memcache_table(5) - centos |
| mysqlnd_memcache_get_config(3) - php |
| memcache_table(5) - php |
| memcache.addserver(3) - php |
| dancer::session::memcached(3pm) - debian |
| Similar Topics in the Unix Linux Community |
|---|
| basic nc question |
| Find file that maps to a listening port |
| Processes listening on Ports(Solaris) |
| Using Mediawiki API fails |
| Memcache in Nagios |