mirror of
https://github.com/predis/predis.git
synced 2026-08-20 20:01:49 +00:00
8 lines
112 B
PHP
8 lines
112 B
PHP
<?php
|
|
|
|
namespace Predis\Distribution;
|
|
|
|
interface INodeKeyGenerator {
|
|
public function generateKey($value);
|
|
}
|