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