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