|
@@ -4,8 +4,7 @@ namespace Predis;
|
|
|
|
|
|
use Predis\Options\IOption;
|
|
|
use Predis\Options\ClientProfile;
|
|
|
-use Predis\Options\ClientClusterType;
|
|
|
-use Predis\Options\ClientKeyDistribution;
|
|
|
+use Predis\Options\ClientCluster;
|
|
|
use Predis\Options\ClientConnectionFactory;
|
|
|
|
|
|
class ClientOptions {
|
|
@@ -22,9 +21,8 @@ class ClientOptions {
|
|
|
}
|
|
|
self::$_sharedOptions = array(
|
|
|
'profile' => new ClientProfile(),
|
|
|
- 'key_distribution' => new ClientKeyDistribution(),
|
|
|
'connections' => new ClientConnectionFactory(),
|
|
|
- 'cluster' => new ClientClusterType(),
|
|
|
+ 'cluster' => new ClientCluster(),
|
|
|
);
|
|
|
return self::$_sharedOptions;
|
|
|
}
|