0
我想在我的應用程序中使用memcache。我在php.ini文件中啓用了php_memcache.dll,正常memcache在簡單的PHP中工作正常。如何在命名空間應用程序中使用memcache?
$memcache = new Memcache;
$memcache->connect('localhost', 11211);
$test = $memcache->get("A");
if(empty($test)){
echo "setting cache";
$memcache->set("A","Cache contents",MEMCACHE_COMPRESSED,50);
}
echo $test;
但我不知道如何在Zend框架2正常的Memcache,創建對象的內存緩存,當我試圖顯示錯誤爲:
Fatal error: Class 'Application\Controller\Memcache' not found
請幫我解決我的問題。