国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > PHP > 正文

詳談php分布式部署

2020-03-22 18:39:32
字體:
來源:轉載
供稿:網友

本文我們接著和大家分享php分布式部署,希望大家對php分布式部署有一個更清晰的思路。

普通的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


  1. /* Memcache緩存設置 */

  2. 'MEMCACHE_HOST' => '192.168.202.20',

  3. 'MEMCACHE_PORT' => 11211,


  修改數據緩存為Memcache:




[php] view plain copy


  1. 'DATA_CACHE_TYPE' => 'Memcache',

  修改Session為Memcache:





[php] view plain copy


  1. 'SESSION_TYPE' => 'Memcache',


  如下圖所示:



  因為云存儲各類比較多,附件存儲到云存儲上,就不再贅述,參數各云存儲提供的sdk即可。經過以上修改,就可以將Web服務器進行分布式部署了。


  附件1:CacheMemcache.html' target='_blank'>class.php



[php] view plain copy


  1. <?php

  2. // +----------------------------------------------------------------------

  3. // | ThinkPHP [ WE CAN DO IT JUST THINK IT ]

  4. // +----------------------------------------------------------------------

  5. // | Copyright (c) 2006-2012 http://thinkVeVb.com All rights reserved.

  6. // +----------------------------------------------------------------------

  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )

  8. // +----------------------------------------------------------------------

  9. // | Author: liu21st <liu21st@gmail.com>

  10. // +----------------------------------------------------------------------

  11. defined('THINK_PATH') or exit();

  12. /**

  13. * Memcache緩存驅動

  14. * @category Extend

  15. * @package Extend

  16. * @subpackage Driver.Cache

  17. * @author liu21st <liu21st@gmail.com>

  18. */

  19. class CacheMemcache extends Cache {

  20. /**

  21. * 架構函數

  22. * @param array $options 緩存參數

  23. * @access public

  24. */

  25. function __construct($options=array()) {

  26. if ( !extension_loaded('memcache') ) {

  27. throw_exception(L('_NOT_SUPPERT_').':memcache');

  28. }

  29. $options = array_merge(array (

  30. 'host' => C('MEMCACHE_HOST') ? C('MEMCACHE_HOST') : '127.0.0.1',

  31. 'port' => C('MEMCACHE_PORT') ? C('MEMCACHE_PORT') : 11211,

  32. 'timeout' => C('DATA_CACHE_TIMEOUT') ? C('DATA_CACHE_TIMEOUT') : false,

  33. 'persistent' => false,

  34. ),$options);

  35. $this->options = $options;

  36. $this->options['expire'] = isset($options['expire'])? $options['expire'] : C('DATA_CACHE_TIME');

  37. $this->options['prefix'] = isset($options['prefix'])? $options['prefix'] : C('DATA_CACHE_PREFIX');

  38. $this->options['length'] = isset($options['length'])? $options['length'] : 0;

  39. $func = $options['persistent'] ? 'pconnect' : 'connect';

  40. $this->handler = new Memcache;

  41. $options['timeout'] === false ?

  42. $this->handler->$func($options['host'], $options['port']) :

  43. $this->handler->$func($options['host'], $options['port'], $options['timeout']);

  44. }

  45. /**

  46. * 讀取緩存

  47. * @access public

  48. * @param string $name 緩存變量名

  49. * @return mixed

  50. */

  51. public function get($name) {

  52. N('cache_read',1);

  53. return $this->handler->get($this->options['prefix'].$name);

  54. }

  55. /**

  56. * 寫入緩存

  57. * @access public

  58. * @param string $name 緩存變量名

  59. * @param mixed $value 存儲數據

  60. * @param integer $expire 有效時間(秒)

  61. * @return boolen

  62. */

  63. public function set($name, $value, $expire = null) {

  64. N('cache_write',1);

  65. if(is_null($expire)) {

  66. $expire = $this->options['expire'];

  67. }

  68. $name = $this->options['prefix'].$name;

  69. if($this->handler->set($name, $value, 0, $expire)) {

  70. if($this->options['length']>0) {

  71. // 記錄緩存隊列

  72. $this->queue($name);

  73. }

  74. return true;

  75. }

  76. return false;

  77. }

  78. /**

  79. * 刪除緩存

  80. * @access public

  81. * @param string $name 緩存變量名

  82. * @return boolen

  83. */

  84. public function rm($name, $ttl = false) {

  85. $name = $this->options['prefix'].$name;

  86. return $ttl === false ?

  87. $this->handler->delete($name) :

  88. $this->handler->delete($name, $ttl);

  89. }

  90. /**

  91. * 清除緩存

  92. * @access public

  93. * @return boolen

  94. */

  95. public function clear() {

  96. return $this->handler->flush();

  97. }

  98. }

  附件2:SessionMemcache.class.php




[php] view plain copy


  1. <?php

  2. // +----------------------------------------------------------------------

  3. // |

  4. // +----------------------------------------------------------------------

  5. // | Copyright (c) 2013-

  6. // +----------------------------------------------------------------------

  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )

  8. // +----------------------------------------------------------------------

  9. // | Author: richievoe <richievoe@163.com>

  10. // +----------------------------------------------------------------------

  11. /**

  12. * 自定義Memcache來保存session

  13. */

  14. Class SessionMemcache{

  15. //memcache對象

  16. private $mem;

  17. //SESSION有效時間

  18. private $expire;

  19. //外部調用的函數

  20. public function execute(){

  21. session_set_save_handler(

  22. array(&$this,'open'),

  23. array(&$this,'close'),

  24. array(&$this,'read'),

  25. array(&$this,'write'),

  26. array(&$this,'destroy'),

  27. array(&$this,'gc')

  28. );

  29. }

  30. //連接memcached和初始化一些數據

  31. public function open($path,$name){

  32. $this->expire = C('SESSION_EXPIRE') ? C('SESSION_EXPIRE') :ini_get('session.gc_maxlifetime');

  33. $this->mem = new Memcache;

  34. return $this->mem->connect(C('MEMCACHE_HOST'), C('MEMCACHE_PORT'));

  35. }

  36. //關閉memcache服務器

  37. public function close(){

  38. return $this->mem->close();

  39. }

  40. //讀取數據

  41. public function read($id){

  42. $id = C('SESSION_PREFIX').$id;

  43. $data = $this->mem->get($id);

  44. return $data ? $data :'';

  45. }

  46. //存入數據

  47. public function write($id,$data){

  48. $id = C('SESSION_PREFIX').$id;

  49. //$data = addslashes($data);

  50. return $this->mem->set($id,$data,0,$this->expire);

  51. }

  52. //銷毀數據

  53. public function destroy($id){

  54. $id = C('SESSION_PREFIX').$id;

  55. return $this->mem->delete($id);

  56. }

  57. //垃圾銷毀

  58. public function gc(){

  59. return true;

  60. }

  61. }

  62. ?>

相關推薦:

PHP分布式跟蹤心得分享

PHP分布式及大量數據處理有關問題

php分布式架構

以上就是詳談php分布式部署的詳細內容,更多請關注 其它相關文章!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 调兵山市| 德保县| 竹北市| 平远县| 黎平县| 上杭县| 昂仁县| 讷河市| 乐平市| 沅江市| 大荔县| 桐梓县| 咸宁市| 永嘉县| 鄯善县| 舒城县| 娱乐| 合阳县| 湘乡市| 时尚| 孟津县| 澜沧| 蒙城县| 延津县| 舞钢市| 宁津县| 册亨县| 奇台县| 垫江县| 桂林市| 安顺市| 富源县| 大城县| 汕尾市| 泗水县| 云霄县| 焉耆| 绥江县| 万源市| 溧阳市| 涿鹿县|