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.
Via Composer
$ composer require yiranzai/dht
easy
$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');
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
$hash = new Yiranzai\Dht\Dht();
$hash->deleteEntityNode('db_server_one');
default algo is time33, See more support
$hash = new Yiranzai\Dht\Dht();
$hash->algo('sha256');
//or
$hash = new Yiranzai\Dht\Dht(['algo' => YOUR_ALGO]);
Please see CHANGELOG for more information on what has changed recently.
$ composer test
Please see CONTRIBUTING and CODE_OF_CONDUCT for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.