Composer业务网络和Hyperledger Fabric网络有什么区别
What is the difference between Composer business network and Hyperledger Fabric network
我知道我们可以在具有单个组织(或多个组织)的结构网络上部署多个 Hyperledger Composer Business 网络。它类似于在结构网络上(在一个或多个通道上)部署多个链码吗?也就是说,composer network install
和 composer network start
类似于 fabric 上的 peer chaincode install
和 peer chaincode instantiate
?
你是对的,composer network install
类似于 peer chaincode install
,因为它将你的业务网络安装到对等点(你的业务网络是这里的链代码)并且在幕后执行类似于对等安装命令。 composer network start
类似于 peer chaincode instantiate
,因为它请求实例化业务网络链代码,但也执行一些特定于 hyperledger composer 的额外必需活动。
我知道我们可以在具有单个组织(或多个组织)的结构网络上部署多个 Hyperledger Composer Business 网络。它类似于在结构网络上(在一个或多个通道上)部署多个链码吗?也就是说,composer network install
和 composer network start
类似于 fabric 上的 peer chaincode install
和 peer chaincode instantiate
?
你是对的,composer network install
类似于 peer chaincode install
,因为它将你的业务网络安装到对等点(你的业务网络是这里的链代码)并且在幕后执行类似于对等安装命令。 composer network start
类似于 peer chaincode instantiate
,因为它请求实例化业务网络链代码,但也执行一些特定于 hyperledger composer 的额外必需活动。