Skip to content

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

License

Notifications You must be signed in to change notification settings

yiranzai/php-hash-dht

Repository files navigation

hash-dht

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.

Install

Via Composer

$ composer require yiranzai/hash-dht

Usage

easy

init

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

Reuse it

You have to cache it and pass it in the next time you use it. Or use the static::cache I provided.

$hash = new Yiranzai\Dht\Hash();
$hash->addEntityNode('db_server_one')->addEntityNode('db_server_two');
$dbServer =  $hash->getLocation('key_one');
Yiranzai\Dht\Hash::cache($hash->toArray());
$hash = new Yiranzai\Dht\Hash(Yiranzai\Dht\Hash::getCache());
$dbServer =  $hash->getLocation('key_one');

Delete Entity Node

Delete entity node

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

Change algo

default algo is time33, See more support

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

//or

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

Change default cache path

Change default cache path

$hash = new Yiranzai\Dht\Hash();
$hash->path(YOUR_PATH);

//or

$hash = new Yiranzai\Dht\Hash(['cachePath' => YOUR_PATH]);

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.

About

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

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages