Update json-rpc.md

This commit is contained in:
黄朝晖 2019-07-02 14:16:49 +08:00 committed by GitHub
parent 777f7507cd
commit daee06ef70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -158,12 +158,12 @@ return [
[
// 对应消费者类的 $serviceName
'name' => 'CaculatorService',
// 这个消费者要从哪获取节点信息
// 这个消费者要从哪个服务中心获取节点信息,如不配置则不会从服务中心获取节点信息
'registry' => [
'protocol' => 'consul',
'address' => 'http://127.0.0.1:8500',
],
// 如果服务没有发布到consul, 则应指定RPC节点配置
// 如果没有指定上面的 registry 配置,即为直接对指定的节点进行消费,通过下面的 nodes 参数来配置服务提供者的节点信息
'nodes' => [
['host' => '127.0.0.1', 'port' => 9504],
],