普通的Web開發,常用的模式就是使用者登入之後,登入狀態資訊保存在Session中,使用者一些常用的熱資料保存在檔案快取中,使用者上傳的附件資訊會保存在Web伺服器的某個目錄上。這種方式對於一般的Web應用,使用很方便,完全能夠勝任。但是對於高並發的企業級網站,就應付不了了。需採用Web叢集實現負載平衡。
使用Web叢集方式部署之後,首要調整的就是使用者狀態資訊與附件資訊。使用者狀態不能再儲存到Session中,快取也不能用本機Web伺服器的檔案緩存,以及附件,也不能儲存在Web伺服器上了。因為要確保叢集裡面的各個Web伺服器,狀態完全一致。因此,需要將使用者狀態、快取等保存到專用的快取伺服器,例如Memcache。附件需要保存到雲端儲存中,例如七牛雲端儲存、阿里雲端儲存、騰訊雲端儲存等。
本文以ThinkPHP開發框架為例,說明如何設置,能夠將Session、快取等保存到Memcache快取伺服器上。
下載快取的Memcache處理類,放到Thinkphp\Extend\Driver\Cache目錄中;下載Session的Memcache處理類,放到Thinkphp\Extend\Driver\Session目錄中,如下圖所示:
修改設定文件,調整Session與快取,都記錄到Memcache伺服器上。開啟ThinkPHP\Conf\convention.PHP,增加設定項目:
/* Memcache缓存设置 */ 'MEMCACHE_HOST' => '192.168.202.20', 'MEMCACHE_PORT' => 11211,
修改資料快取為Memcache:
'DATA_CACHE_TYPE' => 'Memcache' ,
#
'SESSION_TYPE' => 'Memcache',
如下圖所示:
<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ] // +---------------------------------------------------------------------- // | Copyright (c) 2006-2012 http://thinkphp.cn All rights reserved. // +---------------------------------------------------------------------- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 ) // +---------------------------------------------------------------------- // | Author: liu21st <liu21st@gmail.com> // +---------------------------------------------------------------------- defined('THINK_PATH') or exit(); /** * Memcache缓存驱动 * @category Extend * @package Extend * @subpackage Driver.Cache * @author liu21st <liu21st@gmail.com> */ class CacheMemcache extends Cache { /** * 架构函数 * @param array $options 缓存参数 * @access public */ function __construct($options=array()) { if ( !extension_loaded('memcache') ) { throw_exception(L('_NOT_SUPPERT_').':memcache'); } $options = array_merge(array ( 'host' => C('MEMCACHE_HOST') ? C('MEMCACHE_HOST') : '127.0.0.1', 'port' => C('MEMCACHE_PORT') ? C('MEMCACHE_PORT') : 11211, 'timeout' => C('DATA_CACHE_TIMEOUT') ? C('DATA_CACHE_TIMEOUT') : false, 'persistent' => false, ),$options); $this->options = $options; $this->options['expire'] = isset($options['expire'])? $options['expire'] : C('DATA_CACHE_TIME'); $this->options['prefix'] = isset($options['prefix'])? $options['prefix'] : C('DATA_CACHE_PREFIX'); $this->options['length'] = isset($options['length'])? $options['length'] : 0; $func = $options['persistent'] ? 'pconnect' : 'connect'; $this->handler = new Memcache; $options['timeout'] === false ? $this->handler->$func($options['host'], $options['port']) : $this->handler->$func($options['host'], $options['port'], $options['timeout']); } /** * 读取缓存 * @access public * @param string $name 缓存变量名 * @return mixed */ public function get($name) { N('cache_read',1); return $this->handler->get($this->options['prefix'].$name); } /** * 写入缓存 * @access public * @param string $name 缓存变量名 * @param mixed $value 存储数据 * @param integer $expire 有效时间(秒) * @return boolen */ public function set($name, $value, $expire = null) { N('cache_write',1); if(is_null($expire)) { $expire = $this->options['expire']; } $name = $this->options['prefix'].$name; if($this->handler->set($name, $value, 0, $expire)) { if($this->options['length']>0) { // 记录缓存队列 $this->queue($name); } return true; } return false; } /** * 删除缓存 * @access public * @param string $name 缓存变量名 * @return boolen */ public function rm($name, $ttl = false) { $name = $this->options['prefix'].$name; return $ttl === false ? $this->handler->delete($name) : $this->handler->delete($name, $ttl); } /** * 清除缓存 * @access public * @return boolen */ public function clear() { return $this->handler->flush(); } }
<?php // +---------------------------------------------------------------------- // | // +---------------------------------------------------------------------- // | Copyright (c) 2013- // +---------------------------------------------------------------------- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 ) // +---------------------------------------------------------------------- // | Author: richievoe <richievoe@163.com> // +---------------------------------------------------------------------- /** * 自定义Memcache来保存session */ Class SessionMemcache{ //memcache对象 private $mem; //SESSION有效时间 private $expire; //外部调用的函数 public function execute(){ session_set_save_handler( array(&$this,'open'), array(&$this,'close'), array(&$this,'read'), array(&$this,'write'), array(&$this,'destroy'), array(&$this,'gc') ); } //连接memcached和初始化一些数据 public function open($path,$name){ $this->expire = C('SESSION_EXPIRE') ? C('SESSION_EXPIRE') :ini_get('session.gc_maxlifetime'); $this->mem = new Memcache; return $this->mem->connect(C('MEMCACHE_HOST'), C('MEMCACHE_PORT')); } //关闭memcache服务器 public function close(){ return $this->mem->close(); } //读取数据 public function read($id){ $id = C('SESSION_PREFIX').$id; $data = $this->mem->get($id); return $data ? $data :''; } //存入数据 public function write($id,$data){ $id = C('SESSION_PREFIX').$id; //$data = addslashes($data); return $this->mem->set($id,$data,0,$this->expire); } //销毁数据 public function destroy($id){ $id = C('SESSION_PREFIX').$id; return $this->mem->delete($id); } //垃圾销毁 public function gc(){ return true; } } ?>#ThinkPHP專案實作分散式部署實例詳解hadoop 2.6.0 偽分散式部署安裝的實例教學PHP擴充Memcache分散部署方案_PHP#######
以上是php分散式部署實例詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!