FISCO-BCOS学习 Posted on 2023-01-16 Words count in article: 297 | Reading time ≈ 1 FISCO-BCOS核心模块共识算法FISCO BCOS基于多群组架构实现了插件化的共识算法,不同群组可运行不同的共识算法,组与组之间的共识过程互不影响,FISCO BCOS目前支持PBFT(Practical Byzantine Fault Tolerance)和Raft(Replication ... Read more »
fabric学习 Posted on 2023-01-15 Words count in article: 7.9k | Reading time ≈ 27 Fabric 学习Fabric简介Hyperledger Fabric 项目是一个旨在推动区块链跨行业应用的开源项目。它是一个联盟链系统,和我们之前学的以太坊和 比特币不同。 F ... Read more »
HTTPS学习 Posted on 2022-08-24 Words count in article: 6.9k | Reading time ≈ 24 HTTPS学习参考博客 https://blog.csdn.net/qq_36885515/article/details/123137827 https://www.cnblogs.com/loleina/p/8418085.html https://www.jianshu.com/p/4932 ... Read more »
进程通讯 Posted on 2022-08-23 Words count in article: 7k | Reading time ≈ 25 进程通讯参考博客:https://www.jianshu.com/p/c1015f5ffa74 进程间通信的概念每个进程各自有不同的用户地址空间,任何一个进程的全局变量在另一个进程中都看不到,所以进程之间要交换数据必须通过内核,在内核中开辟一块缓冲区,进程1把数据从用户空间拷到内核缓冲区,进程2再从 ... Read more »
Mysql索引 Posted on 2022-08-22 Words count in article: 5.6k | Reading time ≈ 19 Mysql索引参考博客 https://www.cnblogs.com/zsql/p/13808417.html https://juejin.cn/post/7031712626581356574 索引类别 索引是一个单独的、存储在磁盘上的数据库结构,它们包含着对数据表里所有 ... Read more »
Design-Patterns-3 Posted on 2022-08-21 Words count in article: 1.1k | Reading time ≈ 4 Design Patterns 创建型模式Prototype PatternThe ProblemSolutionImplementationExerciseSingleton Pattern单例模式(Singleton Pattern)是 Java 中最简单的设计模式之一。这种类型的设计模式属于创 ... Read more »
Design-Patterns-2 Posted on 2022-08-21 Words count in article: 949 | Reading time ≈ 3 设计模式2-结构型模式Composite Pattern组合模式(Composite Pattern),又叫部分整体模式,是用于把一组相似的对象当作一个单一的对象。 The Problem比如说,在PPT中我创建了两个长方形,两个圆形,那么我们可以选中两个长方形将它们同时移动或者缩放;同样的,我们甚 ... Read more »
Design-Patterns-1 Posted on 2022-08-19 Words count in article: 3.9k | Reading time ≈ 16 Design Patterns - Behavioural首先,什么是设计模式?设计模式是软件开发人员在软件开发过程中面临的一般问题的解决方案。这些解决方案是众多软件开发人员经过相当长的一段时间的试验和错误总结出来的。 设计模式可以教我们如何去架构一个类、以及类与类之间如何联系起来。在90年代由Go ... Read more »
Raft Posted on 2022-06-10 Words count in article: 6.6k | Reading time ≈ 23 Raft在 Raft算法 这篇博客中,我们初步学习了Raft算法,但是介绍的不够详细,我会在原来的基础上增加一部分内容 在介绍Raft算法前,我们首先要知道Paxos算法,但是它难以理解,状态空间十分复杂,因此没有构建显示系统的统一基础。由此才提出了Raft算法。 Raft算法的应用: 分布式KV ... Read more »