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