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

首頁 > 編程 > PHP > 正文

memcache一致性hash的php實現(xiàn)方法

2020-03-22 19:55:05
字體:
供稿:網(wǎng)友
本文實例講述了memcache一致性hash的php實現(xiàn)方法。分享給大家供大家參考。具體如下:最近在看一些分布式方面的文章,所以就用php實現(xiàn)一致性hash來練練手,以前一般用的是最原始的hash取模做 分布式,當生產(chǎn)過程中添加或刪除一臺memcache都會造成數(shù)據(jù)的全部失效,一致性hash就是為了解決這個問題,把失效數(shù)據(jù)降到最低,相關資料可以 google一下!php實現(xiàn)效率有一定的缺失,如果要高效率,還是寫擴展比較好經(jīng)測試,5個memcache,每個memcache生成100個虛擬節(jié)點,set加get1000次,與單個memcache直接set加get慢5倍,所以效率一般,有待優(yōu)化!在閱讀本文之前,最好知道二分查找法。實現(xiàn)過程:memcache的配置 ip+端口+虛擬節(jié)點序列號 做hash,使用的是crc32,形成一個閉環(huán)。
對要操作的key進行crc32
二分法在虛擬節(jié)點環(huán)中查找最近的一個虛擬節(jié)點
從虛擬節(jié)點中提取真實的memcache ip和端口,做單例連接
復制代碼 代碼如下:
php
html' target='_blank'>class memcacheHashMap {
private $_node = array();
private $_nodeData = array();
private $_keyNode = 0;
private $_memcache = null;
//每個物理服務器生成虛擬節(jié)點個數(shù) [注:節(jié)點數(shù)越多,cache分布的均勻性越好,同時set get操作時,也更耗資源,10臺物理服務器,采用200較為合理]
private $_virtualNodeNum = 200;
private function __construct() {
$config = array(//五個memcache服務器
'127.0.0.1:11211',
'127.0.0.1:11212',
'127.0.0.1:11213',
'127.0.0.1:11214',
'127.0.0.1:11215'
);
if (!$config) throw new Exception('Cache config NULL');
foreach ($config as $key = $value) {
for ($i = 0; $i $this- _virtualNodeNum; $i++) {
$this- _node[sprintf("%u", crc32($value . '_' . $i))] = $value . '_' . $i;//循環(huán)為每個memcache服務器創(chuàng)建200個虛擬節(jié)點
}
}
ksort($this- _node);//創(chuàng)建出來的1000個虛擬節(jié)點按照鍵名從小到大排序
}
//實例化該類
static public function getInstance() {
static $memcacheObj = null;
if (!is_object($memcacheObj)) {
$memcacheObj = new self();
}
return $memcacheObj;
}
//根據(jù)傳來的鍵查找到對應虛擬節(jié)點的位置
private function _connectMemcache($key) {
$this- _nodeData = array_keys($this- _node);//所有的虛擬節(jié)點的鍵的數(shù)組
$this- _keyNode = sprintf("%u", crc32($key));//算出鍵的hash值
$nodeKey = $this- _findServerNode();//找出對應的虛擬節(jié)點
//如果超出環(huán),從頭再用二分法查找一個最近的,然后環(huán)的頭尾做判斷,取最接近的節(jié)點
if ($this- _keyNode end($this- _nodeData)) {
$this- _keyNode -= end($this- _nodeData);
$nodeKey2 = $this- _findServerNode();
if (abs($nodeKey2 - $this- _keyNode) abs($nodeKey - $this- _keyNode)) $nodeKey = $nodeKey2;
}
var_dump($this- _node[$nodeKey]);
list($config, $num) = explode('_', $this- _node[$nodeKey]);
if (!$config) throw new Exception('Cache config Error');
if (!isset($this- _memcache[$config])) {
$this- _memcache[$config] = new Memcache;
list($host, $port) = explode(':', $config);
$this- _memcache[$config]- connect($host, $port);
}
return $this- _memcache[$config];
}
//二分法根據(jù)給出的值找出最近的虛擬節(jié)點位置
private function _findServerNode($m = 0, $b = 0) {
$total = count($this- _nodeData);
if ($total != 0 && $b == 0) $b = $total - 1;
if ($m $b){
$avg = intval(($m+$b) / 2);
if ($this- _nodeData[$avg] == $this- _keyNode) return $this- _nodeData[$avg];
elseif ($this- _keyNode $this- _nodeData[$avg] && ($avg-1 = 0)) return $this- _findServerNode($m, $avg-1);
else return $this- _findServerNode($avg+1, $b);
}
if (abs($this- _nodeData[$b] - $this- _keyNode) abs($this- _nodeData[$m] - $this- _keyNode)) return $this- _nodeData[$b];
else return $this- _nodeData[$m];
}
public function set($key, $value, $expire = 0) {
return $this- _connectMemcache($key)- set($key, json_encode($value), 0, $expire);
}
public function add($key, $value, $expire = 0) {
return $this- _connectMemcache($key)- add($key, json_encode($value), 0, $expire);
}
public function get($key) {
return json_decode($this- _connectMemcache($key)- get($key), true);
}
public function delete($key) {
return $this- _connectMemcache($key)- delete($key);
}
}
$runData['BEGIN_TIME'] = microtime(true);
//測試一萬次set加get
for($i=0;$i 10000;$i++) {
$key = md5(mt_rand());
$b = memcacheHashMap::getInstance()- set($key, time(), 10);
}
var_dump(number_format(microtime(true) - $runData['BEGIN_TIME'],6));
$runData['BEGIN_TIME'] = microtime(true); $m= new Memcache;
$m- connect('127.0.0.1', 11211);
for($i=0;$i 10000;$i++) {
$key = md5(mt_rand());
$b = $m- set($key, time(), 0, 10);
}
var_dump(number_format(microtime(true) - $runData['BEGIN_TIME'],6));

希望本文所述對大家的php程序設計有所幫助。PHP教程

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

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 东方市| 玛多县| 郯城县| 图片| 合山市| 连江县| 外汇| 永康市| 中宁县| 石景山区| 西平县| 元谋县| 社会| 萨迦县| 巧家县| 乌鲁木齐县| 客服| 高台县| 潼关县| 梁平县| 民权县| 杭州市| 潼关县| 伊川县| 安多县| 东至县| 仁寿县| 昌黎县| 房产| 平罗县| 沽源县| 邯郸县| 二连浩特市| 驻马店市| 徐州市| 抚顺县| 九台市| 明溪县| 道孚县| 凤阳县| 德保县|