php-etcd
php-etcd copied to clipboard
get with prefix
Added request with prefix which returns Generator<Mvccpb\KeyValue>
// example
foreach ($client->getWithPrefix('/some-namespace') as $val) {
echo $val->getKey() . " -> " . $val->getValue() . "\n";
}