Home >Backend Development >PHP Tutorial >How to use memcache in zend framework, zendmemcache_PHP tutorial
This article describes the method of using memcache in zend framework. Share it with everyone for your reference, the details are as follows:
In the zend framework project, the following are the specific methods:
1. Find Bootstrap.php and add the following initialization method (Note: Bootstrap.php is the initialization to load all operations ):
protected function _initMemcache() { $frontendOpts = array( 'caching' => true, 'lifetime' => 1800, //缓存生命周期3分钟,根据自己项目需求设置 'automatic_serialization' => true ); $backendOpts = array( 'servers' =>array( array( 'host' => '127.0.0.1', 'port' => 11211 ) ), 'compression' => false ); $memcache = Zend_Cache::factory('Core', 'Memcached', $frontendOpts, $backendOpts); Zend_Registry::set('memcache',$memcache); }
2. Just call it at the location you need:
For example, call friendly links in your IndexController
public function indexAction(){ $memcache=Zend_Registry::get('memcache'); //友情链接 if(!$datalink = $memcache->load('datalink')){ $link=new Blog_Model_Friendlink(); $datalink = $link->listshi ();//print_r($datalink);die; $memcache->save($datalink, 'datalink'); } $this->view->datalink=$datalink; }
Readers who are interested in more zend-related content can check out the special topics of this site: "Zend FrameWork Framework Introductory Tutorial", "php Excellent Development Framework Summary", "Yii Framework Introduction and Summary of Common Techniques", "ThinkPHP Introductory Tutorial" , "php object-oriented programming introductory tutorial", "php mysql database operation introductory tutorial" and "php common database operation skills summary"
I hope this article will be helpful to everyone in PHP programming.