Skip to content

Commit ee1cf7b

Browse files
committed
added key to getHostname to get hostname from ShardedClient
1 parent dd93a8c commit ee1cf7b

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

src/Client.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,11 @@ public function __construct($hostname = "localhost:2379", $username = false, $pa
7272
$this->password = $password;
7373
}
7474

75-
public function getHostname(): string
75+
/**
76+
* @param string|null $key
77+
* @return string
78+
*/
79+
public function getHostname(?string $key = null): string
7680
{
7781
return $this->hostname;
7882
}

src/ClientInterface.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@
1111
*/
1212
interface ClientInterface
1313
{
14-
public function getHostname(): string;
14+
/**
15+
* @param string|null $key
16+
* @return string
17+
*/
18+
public function getHostname(?string $key = null): string;
1519

1620
/**
1721
* Put a value into the key store

src/ShardedClient.php

+8-2
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,15 @@ protected function getClientFromKey(string $key): ClientInterface
6969
return $this->keyCache[$key];
7070
}
7171

72-
73-
public function getHostname(): string
72+
/**
73+
* @inheritDoc
74+
* @throws \Flexihash\Exception
75+
*/
76+
public function getHostname(?string $key = null): string
7477
{
78+
if ($key) {
79+
return $this->getClientFromKey($key)->getHostname($key);
80+
}
7581
return implode("-", array_keys($this->clients));
7682
}
7783

0 commit comments

Comments
 (0)