php-etcd
php-etcd copied to clipboard
PHP gRPC client for etcd v3
Results
3
php-etcd issues
Sort by
recently updated
recently updated
newest added
no sample and no method for get prefix
Is it possible to add watch command in the library? https://etcd.io/docs/v3.5/tutorials/how-to-watch-keys/
Added request with prefix which returns Generator ```php // example foreach ($client->getWithPrefix('/some-namespace') as $val) { echo $val->getKey() . " -> " . $val->getValue() . "\n"; } ```