yiranzai/dht 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

yiranzai/dht

Composer 安装命令:

composer require yiranzai/dht

包简介

PHP Distributed Hash Table

README 文档

README

Latest Version on Packagist Software License Build Status Coverage Status Quality Score Total Downloads

PHP Distributed Hash Table, Suitable for assisting in finding distributed nodes corresponding to key.

You have to cache it and pass it in the next time you use it.

Install

Via Composer

$ composer require yiranzai/dht

Usage

easy

init

$hash = new Yiranzai\Dht\Dht();
$hash->addEntityNode('db_server_one')->addEntityNode('db_server_two');
$dbServer =  $hash->getLocation('key_one');

//or

$dhtOne = new Yiranzai\Dht\Dht([
    'virtualNodeNum' => 3,
    'algo'           => 'sha256',
]);
$dhtOne->addEntityNode('db_server_one');

Reuse it

You have to cache it and pass it in the next time you use it.

$hash = new Yiranzai\Dht\Dht();
$hash->addEntityNode('db_server_one')->addEntityNode('db_server_two');
$dbServer =  $hash->getLocation('key_one');
$cache = $hash->toArray();
// please cache this data
$hash = new Yiranzai\Dht\Dht($cache);
$dbServer =  $hash->getLocation('key_one');

Delete Entity Node

Delete entity node

$hash = new Yiranzai\Dht\Dht();
$hash->deleteEntityNode('db_server_one');

Change algo

default algo is time33, See more support

$hash = new Yiranzai\Dht\Dht();
$hash->algo('sha256');

//or

$hash = new Yiranzai\Dht\Dht(['algo' => YOUR_ALGO]);

Change log

Please see CHANGELOG for more information on what has changed recently.

Testing

$ composer test

Contributing

Please see CONTRIBUTING and CODE_OF_CONDUCT for details.

Security

If you discover any security related issues, please email wuqingdzx@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

统计信息

  • 总下载量: 45
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 12
  • 点击次数: 2
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 11
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-03-08

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固