mirror of
https://github.com/predis/predis.git
synced 2026-08-23 14:03:22 +00:00
10 lines
215 B
PHP
10 lines
215 B
PHP
<?php
|
|
|
|
namespace Predis\Distribution;
|
|
|
|
interface IDistributionStrategy extends INodeKeyGenerator {
|
|
public function add($node, $weight = null);
|
|
public function remove($node);
|
|
public function get($key);
|
|
}
|