123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- namespace Predis\Cluster;
- use Predis\Command\CommandInterface;
- interface CommandHashStrategyInterface
- {
-
- public function getHash(CommandInterface $command);
-
- public function getKeyHash($key);
- }
|