function dumpCacheSlab in Production check & Production monitor 6
Same name and namespace in other branches
- 7 includes/prod_check.memcache.inc \dumpCacheSlab()
1 call to dumpCacheSlab()
- prod_check.memcache.inc in includes/
prod_check.memcache.inc
File
- includes/
prod_check.memcache.inc, line 126
Code
function dumpCacheSlab($server, $slabId, $limit) {
list($host, $port) = get_host_port_from_server($server);
$resp = sendMemcacheCommand($host, $port, 'stats cachedump ' . $slabId . ' ' . $limit);
return $resp;
}