ThinkPHP分散式環境搭建
普通的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,增加配置項:
[php] view plain copy
- /* Memcache快取設定 */
- 'MEMCACHE_HOST' => '192.168.202.20',
- 'MEMCACHE_PORT' => 11211,
修改資料快取為Memcache:
[php] view plain copy
- 'DATA_CACHE_TYPE' => 'Memcache',
修改Session為Memcache:
[php] view plain copy
- 'SESSION_TYPE' => 'Memcache',
如下圖所示:
因為雲端儲存各類比較多,附件儲存到雲端儲存上,就不再贅述,引數各雲端儲存提供的sdk即可。經過以上修改,就可以將Web伺服器進行分散式部署了。
附件1:CacheMemcache.class.php
[php] view plain copy
- <?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 <[email protected]>
- // +----------------------------------------------------------------------
- defined('THINK_PATH') or exit();
- /**
- * Memcache快取驅動
- * @category Extend
- * @package Extend
- * @subpackage Driver.Cache
- * @author liu21st <[email protected]>
- */
- 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();
- }
- }
附件2:SessionMemcache.class.php
[php] view plain copy
- <?php
- // +----------------------------------------------------------------------
- // |
- // +----------------------------------------------------------------------
- // | Copyright (c) 2013-
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: richievoe <[email protected]>
- // +----------------------------------------------------------------------
- /**
- * 自定義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;
- }
- }