You are here

function nas_memcache_get in Search API live results 7

1 call to nas_memcache_get()
search_api_live_results.results.php in ./search_api_live_results.results.php

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) {
  }
}