实施多个私有区块链?
Implementing multiple private blockchains?
//这可能是个愚蠢的问题。
我正在探索区块链,现在从事一些概念项目。为此,我需要有多个用户(以百万计),每个用户都维护自己的区块链。与每个人都为单个 public 分类帐做出贡献的一般实现不同。我发现 Multichain 这是最接近的。还有其他选择吗?另外,这听起来像是在破坏区块链的本质吗?
做一百万个区块链没问题,问题是'private blockchains';没有一个用例可以通过私有链实现,但 git。
另外,既然你提到了 'public ledger',我想你应该将数据存储在区块链上,这不是一个好主意,因为它很快就会变贵。
Hyperledger Fabric 1.0 版将引入通道,这将允许在结构内创建私有通道。
"Hyperledger Fabric v1.0 introduces network channels, which are
private lines of communication between specific peers. Channels
restrict data dissemination, including channel membership, transaction
and state information, to peers on the same channel. Although any one
peer can belong to multiple channels, the peer cannot discover or
communicate with peers across channels. This partitioning of data by
channel is defined by configuration chaincode and implemented by a
gossip-based data dissemination protocol."
您可以在此 pdf 中阅读更多相关信息 - https://jira.hyperledger.org/secure/attachment/10362/FabricOverview_draft1.pdf at ## 6. Channels and chains
//这可能是个愚蠢的问题。
我正在探索区块链,现在从事一些概念项目。为此,我需要有多个用户(以百万计),每个用户都维护自己的区块链。与每个人都为单个 public 分类帐做出贡献的一般实现不同。我发现 Multichain 这是最接近的。还有其他选择吗?另外,这听起来像是在破坏区块链的本质吗?
做一百万个区块链没问题,问题是'private blockchains';没有一个用例可以通过私有链实现,但 git。 另外,既然你提到了 'public ledger',我想你应该将数据存储在区块链上,这不是一个好主意,因为它很快就会变贵。
Hyperledger Fabric 1.0 版将引入通道,这将允许在结构内创建私有通道。
"Hyperledger Fabric v1.0 introduces network channels, which are private lines of communication between specific peers. Channels restrict data dissemination, including channel membership, transaction and state information, to peers on the same channel. Although any one peer can belong to multiple channels, the peer cannot discover or communicate with peers across channels. This partitioning of data by channel is defined by configuration chaincode and implemented by a gossip-based data dissemination protocol."
您可以在此 pdf 中阅读更多相关信息 - https://jira.hyperledger.org/secure/attachment/10362/FabricOverview_draft1.pdf at ## 6. Channels and chains