侯体宗的博客
  • 首页
  • 人生(杂谈)
  • 技术
  • 关于我
  • 更多分类
    • 文件下载
    • 文字修仙
    • 中国象棋ai
    • 群聊
    • 九宫格抽奖
    • 拼图
    • 消消乐
    • 相册

PHP实现的一致性哈希算法完整实例

php  /  管理员 发布于 7年前   154

本文实例讲述了PHP实现的一致性哈希算法。分享给大家供大家参考,具体如下:

 target, ... }   * @comment 位置对应节点,用于lookup中根据位置确定要访问的节点   */  private $_positionToTarget = array();  /**   * Internal map of targets to lists of positions that target is hashed to.   * @var array { target => [ position, position, ... ], ... }   * @comment 节点对应位置,用于删除节点   */  private $_targetToPositions = array();  /**   * Whether the internal map of positions to targets is already sorted.   * @var boolean   * @comment 是否已排序   */  private $_positionToTargetSorted = false;  /**   * Constructor   * @param object $hasher Flexihash_Hasher   * @param int $replicas Amount of positions to hash each target to.   * @comment 构造函数,确定要使用的hash方法和需拟节点数,虚拟节点数越多,分布越均匀,但程序的分布式运算越慢   */  public function __construct(Flexihash_Hasher $hasher = null, $replicas = null)  {    $this->_hasher = $hasher ? $hasher : new Flexihash_Crc32Hasher();    if (!empty($replicas)) $this->_replicas = $replicas;  }  /**   * Add a target.   * @param string $target   * @chainable   * @comment 添加节点,根据虚拟节点数,将节点分布到多个虚拟位置上   */  public function addTarget($target)  {    if (isset($this->_targetToPositions[$target]))    {      throw new Flexihash_Exception("Target '$target' already exists.");    }    $this->_targetToPositions[$target] = array();    // hash the target into multiple positions    for ($i = 0; $i < $this->_replicas; $i++)    {      $position = $this->_hasher->hash($target . $i);      $this->_positionToTarget[$position] = $target; // lookup      $this->_targetToPositions[$target] []= $position; // target removal    }    $this->_positionToTargetSorted = false;    $this->_targetCount++;    return $this;  }  /**   * Add a list of targets.   * @param array $targets   * @chainable   */  public function addTargets($targets)  {    foreach ($targets as $target)    {      $this->addTarget($target);    }    return $this;  }  /**   * Remove a target.   * @param string $target   * @chainable   */  public function removeTarget($target)  {    if (!isset($this->_targetToPositions[$target]))    {      throw new Flexihash_Exception("Target '$target' does not exist.");    }    foreach ($this->_targetToPositions[$target] as $position)    {      unset($this->_positionToTarget[$position]);    }    unset($this->_targetToPositions[$target]);    $this->_targetCount--;    return $this;  }  /**   * A list of all potential targets   * @return array   */  public function getAllTargets()  {    return array_keys($this->_targetToPositions);  }  /**   * Looks up the target for the given resource.   * @param string $resource   * @return string   */  public function lookup($resource)  {    $targets = $this->lookupList($resource, 1);    if (empty($targets)) throw new Flexihash_Exception('No targets exist');    return $targets[0];  }  /**   * Get a list of targets for the resource, in order of precedence.   * Up to $requestedCount targets are returned, less if there are fewer in total.   *   * @param string $resource   * @param int $requestedCount The length of the list to return   * @return array List of targets   * @comment 查找当前的资源对应的节点,   *     节点为空则返回空,节点只有一个则返回该节点,   *     对当前资源进行hash,对所有的位置进行排序,在有序的位置列上寻找当前资源的位置   *     当全部没有找到的时候,将资源的位置确定为有序位置的第一个(形成一个环)   *     返回所找到的节点   */  public function lookupList($resource, $requestedCount)  {    if (!$requestedCount)      throw new Flexihash_Exception('Invalid count requested');    // handle no targets    if (empty($this->_positionToTarget))      return array();    // optimize single target    if ($this->_targetCount == 1)      return array_unique(array_values($this->_positionToTarget));    // hash resource to a position    $resourcePosition = $this->_hasher->hash($resource);    $results = array();    $collect = false;    $this->_sortPositionTargets();    // search values above the resourcePosition    foreach ($this->_positionToTarget as $key => $value)    {      // start collecting targets after passing resource position      if (!$collect && $key > $resourcePosition)      {        $collect = true;      }      // only collect the first instance of any target      if ($collect && !in_array($value, $results))      {        $results []= $value;      }      // return when enough results, or list exhausted      if (count($results) == $requestedCount || count($results) == $this->_targetCount)      {        return $results;      }    }    // loop to start - search values below the resourcePosition    foreach ($this->_positionToTarget as $key => $value)    {      if (!in_array($value, $results))      {        $results []= $value;      }      // return when enough results, or list exhausted      if (count($results) == $requestedCount || count($results) == $this->_targetCount)      {        return $results;      }    }    // return results after iterating through both "parts"    return $results;  }  public function __toString()  {    return sprintf(      '%s{targets:[%s]}',      get_class($this),      implode(',', $this->getAllTargets())    );  }  // ----------------------------------------  // private methods  /**   * Sorts the internal mapping (positions to targets) by position   */  private function _sortPositionTargets()  {    // sort by key (position) if not already    if (!$this->_positionToTargetSorted)    {      ksort($this->_positionToTarget, SORT_REGULAR);      $this->_positionToTargetSorted = true;    }  }}/** * Hashes given values into a sortable fixed size address space. * * @author Paul Annesley * @package Flexihash * @licence http://www.opensource.org/licenses/mit-license.php */interface Flexihash_Hasher{  /**   * Hashes the given string into a 32bit address space.   *   * Note that the output may be more than 32bits of raw data, for example   * hexidecimal characters representing a 32bit value.   *   * The data must have 0xFFFFFFFF possible values, and be sortable by   * PHP sort functions using SORT_REGULAR.   *   * @param string   * @return mixed A sortable format with 0xFFFFFFFF possible values   */  public function hash($string);}/** * Uses CRC32 to hash a value into a signed 32bit int address space. * Under 32bit PHP this (safely) overflows into negatives ints. * * @author Paul Annesley * @package Flexihash * @licence http://www.opensource.org/licenses/mit-license.php */class Flexihash_Crc32Hasher  implements Flexihash_Hasher{  /* (non-phpdoc)   * @see Flexihash_Hasher::hash()   */  public function hash($string)  {    return crc32($string);  }}/** * Uses CRC32 to hash a value into a 32bit binary string data address space. * * @author Paul Annesley * @package Flexihash * @licence http://www.opensource.org/licenses/mit-license.php */class Flexihash_Md5Hasher  implements Flexihash_Hasher{  /* (non-phpdoc)   * @see Flexihash_Hasher::hash()   */  public function hash($string)  {    return substr(md5($string), 0, 8); // 8 hexits = 32bit    // 4 bytes of binary md5 data could also be used, but    // performance seems to be the same.  }}/** * An exception thrown by Flexihash. * * @author Paul Annesley * @package Flexihash * @licence http://www.opensource.org/licenses/mit-license.php */class Flexihash_Exception extends Exception{}

希望本文所述对大家PHP程序设计有所帮助。

您可能感兴趣的文章:

  • php 分库分表hash算法
  • php的hash算法介绍
  • PHP中对各种加密算法、Hash算法的速度测试对比代码
  • PHP Hash算法:Times33算法代码实例
  • PHP实现的各类hash算法长度及性能测试实例
  • 一致性哈希算法以及其PHP实现详细解析
  • php-perl哈希算法实现(times33哈希算法)
  • PHP实现的一致性HASH算法示例


  • 上一条:
    PHP使用PHPexcel导入导出数据的方法
    下一条:
    php实现的递归提成方案实例
  • 昵称:

    邮箱:

    0条评论 (评论内容有缓存机制,请悉知!)
    最新最热
    • 分类目录
    • 人生(杂谈)
    • 技术
    • linux
    • Java
    • php
    • 框架(架构)
    • 前端
    • ThinkPHP
    • 数据库
    • 微信(小程序)
    • Laravel
    • Redis
    • Docker
    • Go
    • swoole
    • Windows
    • Python
    • 苹果(mac/ios)
    • 相关文章
    • Laravel从Accel获得5700万美元A轮融资(0个评论)
    • PHP 8.4 Alpha 1现已发布!(0个评论)
    • 用Time Warden监控PHP中的代码处理时间(0个评论)
    • 在PHP中使用array_pop + yield实现读取超大型目录功能示例(0个评论)
    • Property Hooks RFC在PHP 8.4中越来越接近现实(0个评论)
    • 近期文章
    • 在windows10中升级go版本至1.24后LiteIDE的Ctrl+左击无法跳转问题解决方案(0个评论)
    • 智能合约Solidity学习CryptoZombie第四课:僵尸作战系统(0个评论)
    • 智能合约Solidity学习CryptoZombie第三课:组建僵尸军队(高级Solidity理论)(0个评论)
    • 智能合约Solidity学习CryptoZombie第二课:让你的僵尸猎食(0个评论)
    • 智能合约Solidity学习CryptoZombie第一课:生成一只你的僵尸(0个评论)
    • 在go中实现一个常用的先进先出的缓存淘汰算法示例代码(0个评论)
    • 在go+gin中使用"github.com/skip2/go-qrcode"实现url转二维码功能(0个评论)
    • 在go语言中使用api.geonames.org接口实现根据国际邮政编码获取地址信息功能(1个评论)
    • 在go语言中使用github.com/signintech/gopdf实现生成pdf分页文件功能(95个评论)
    • gmail发邮件报错:534 5.7.9 Application-specific password required...解决方案(0个评论)
    • 近期评论
    • 122 在

      学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..
    • 123 在

      Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..
    • 原梓番博客 在

      在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..
    • 博主 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..
    • 1111 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
    • 2016-10
    • 2016-11
    • 2017-06
    • 2017-07
    • 2017-08
    • 2017-09
    • 2017-11
    • 2017-12
    • 2018-01
    • 2018-02
    • 2018-03
    • 2020-03
    • 2020-04
    • 2020-05
    • 2020-06
    • 2020-07
    • 2020-09
    • 2021-02
    • 2021-03
    • 2021-04
    • 2021-05
    • 2021-06
    • 2021-07
    • 2021-08
    • 2021-09
    • 2021-10
    • 2021-11
    • 2021-12
    • 2022-01
    • 2022-02
    • 2022-05
    • 2022-06
    • 2022-07
    • 2022-08
    • 2022-09
    • 2022-10
    • 2022-11
    • 2022-12
    • 2023-01
    • 2023-02
    • 2023-03
    • 2023-04
    • 2023-05
    • 2023-06
    • 2023-07
    • 2023-08
    • 2023-09
    • 2023-10
    • 2023-11
    • 2023-12
    • 2024-01
    • 2024-02
    • 2024-03
    • 2024-04
    • 2024-05
    • 2024-06
    • 2024-07
    • 2024-09
    Top

    Copyright·© 2019 侯体宗版权所有· 粤ICP备20027696号 PHP交流群

    侯体宗的博客