function nas_memcache_get in Search API live results 7
1 call to nas_memcache_get()
File
- ./
search_api_live_results.results.php, line 44
Code
function nas_memcache_get($bin, $port, $key) {
try {
if (class_exists('Memcache')) {
$mc = new Memcache();
$mc
->connect($bin, $port);
return $mc
->get($key);
}
} catch (Exception $e) {
}
}