mirror of
https://github.com/predis/predis.git
synced 2026-08-25 06:49:38 +00:00
371ac91777
Fix also a few bugs found while rewriting the test suite. In order to be able to run integration tests, the test suite requires a version of Redis >= 2.4.0. The units have been splitted into several different groups using PHPUnit @group annotation to allow developers to enable, disable and combine certain types of tests. The available groups are: - disconnected: can run without a Redis server online - connected: active connection to a Redis server is required - commands: test dedicated to a specific Redis command - slow: performs operations that can slow down execution; A list of the available groups can be obtained by running phpunit --list-groups Groups of tests can be disabled or enabled via the XML configuration file or the standard command-line test runner. Please note that due to a bug in PHPUnit, older versions ignore the --group option when the group is excluded in the XML configuration file. Please refer to http://github.com/sebastianbergmann/phpunit/issues/320 for details Integration tests in the @connected group check if the command being tested is defined in the selected server profile (see the value of the TEST_SERVER_VERSION constant in phpunit.xml). If the command is not defined in the target server profile, the integration test is automatically marked as skipped. We also provide an helper script in the bin directory that can be used to automatically generate a file with the scheleton of a test case for a Redis command by specifying the name of the class in the Predis\Commands namespace. For example, to generate a test case for SET (represented by the Predis\Commands\StringSet class): ./bin/generate-command-test.php --class=StringSet The realm of a command is automatically inferred from the name of the class, but it can be set using the --realm option.
166 lines
3.8 KiB
PHP
166 lines
3.8 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Predis package.
|
|
*
|
|
* (c) Daniele Alessandri <suppakilla@gmail.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Predis\Network;
|
|
|
|
use Predis\Commands\ICommand;
|
|
use Predis\Distribution\IDistributionStrategy;
|
|
use Predis\Helpers;
|
|
use Predis\ClientException;
|
|
use Predis\NotSupportedException;
|
|
use Predis\Distribution\HashRing;
|
|
|
|
/**
|
|
* Abstraction for a cluster of aggregated connections to various Redis servers
|
|
* implementing client-side sharding based on pluggable distribution strategies.
|
|
*
|
|
* @author Daniele Alessandri <suppakilla@gmail.com>
|
|
* @todo Add the ability to remove connections from pool.
|
|
*/
|
|
class PredisCluster implements IConnectionCluster, \IteratorAggregate
|
|
{
|
|
private $pool;
|
|
private $distributor;
|
|
|
|
/**
|
|
* @param IDistributionStrategy $distributor Distribution strategy used by the cluster.
|
|
*/
|
|
public function __construct(IDistributionStrategy $distributor = null)
|
|
{
|
|
$this->pool = array();
|
|
$this->distributor = $distributor ?: new HashRing();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function isConnected()
|
|
{
|
|
foreach ($this->pool as $connection) {
|
|
if ($connection->isConnected()) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function connect()
|
|
{
|
|
foreach ($this->pool as $connection) {
|
|
$connection->connect();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function disconnect()
|
|
{
|
|
foreach ($this->pool as $connection) {
|
|
$connection->disconnect();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function add(IConnectionSingle $connection)
|
|
{
|
|
$parameters = $connection->getParameters();
|
|
|
|
if (isset($parameters->alias)) {
|
|
$this->pool[$parameters->alias] = $connection;
|
|
}
|
|
else {
|
|
$this->pool[] = $connection;
|
|
}
|
|
|
|
$weight = isset($parameters->weight) ? $parameters->weight : null;
|
|
$this->distributor->add($connection, $weight);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getConnection(ICommand $command)
|
|
{
|
|
$cmdHash = $command->getHash($this->distributor);
|
|
|
|
if (isset($cmdHash)) {
|
|
return $this->distributor->get($cmdHash);
|
|
}
|
|
|
|
$message = sprintf("Cannot send '%s' commands to a cluster of connections", $command->getId());
|
|
throw new NotSupportedException($message);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getConnectionById($id = null)
|
|
{
|
|
$alias = $id ?: 0;
|
|
|
|
return isset($this->pool[$alias]) ? $this->pool[$alias] : null;
|
|
}
|
|
|
|
|
|
/**
|
|
* Retrieves a connection instance from the cluster using a key.
|
|
*
|
|
* @param string $key Key of a Redis value.
|
|
* @return IConnectionSingle
|
|
*/
|
|
public function getConnectionByKey($key)
|
|
{
|
|
$hashablePart = Helpers::extractKeyTag($key);
|
|
$keyHash = $this->distributor->generateKey($hashablePart);
|
|
|
|
return $this->distributor->get($keyHash);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getIterator()
|
|
{
|
|
return new \ArrayIterator($this->pool);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function writeCommand(ICommand $command)
|
|
{
|
|
$this->getConnection($command)->writeCommand($command);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function readResponse(ICommand $command)
|
|
{
|
|
return $this->getConnection($command)->readResponse($command);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function executeCommand(ICommand $command)
|
|
{
|
|
return $this->getConnection($command)->executeCommand($command);
|
|
}
|
|
}
|