架构理念:[简单][高效][可依赖] 管理理念:[价值][勇气][专注]
上一页 1 2 3 4 5 6 ··· 10 下一页
摘要: 本文档演示了获取、构建和安装 Go 模块、包和命令的标准方法。 阅读全文
posted @ 2020-04-27 13:39 文和-Mignet 阅读(864) 评论(2) 推荐(0) 编辑
摘要: 问题:请使用两个线程,一个输出字母,一个输出数字,交替输出1A2B3C....26Z java的实现 我们来练习使用go实现 package main import ( "fmt" ) func main() { var h = 65 var c, d, e = make(chan int), ma 阅读全文
posted @ 2020-01-18 18:29 文和-Mignet 阅读(428) 评论(0) 推荐(0) 编辑
摘要: 本章用于练习go的模块管理 1.在gopath外新建目录smart4go2.进入目录,创建modgo mod init smart4go3.拉取依赖模块go get -u github.com/emicklei/go-restfulgo get -u github.com/go-sql-driver 阅读全文
posted @ 2020-01-08 19:34 文和-Mignet 阅读(905) 评论(0) 推荐(0) 编辑
摘要: Part B: Key/value service with log compaction Do a git pull to get the latest lab software. As things stand now with your lab code, a rebooting server 阅读全文
posted @ 2019-12-24 19:33 文和-Mignet 阅读(1319) 评论(0) 推荐(1) 编辑
摘要: 6.824 Lab 3: Fault-tolerant Key/Value Service Due Part A: Mar 13 23:59 Due Part B: Apr 10 23:59 Introduction In this lab you will build a fault-tolera 阅读全文
posted @ 2019-12-24 17:08 文和-Mignet 阅读(2285) 评论(0) 推荐(1) 编辑
摘要: Part 2C Do a git pull to get the latest lab software. If a Raft-based server reboots it should resume service where it left off. This requires that Ra 阅读全文
posted @ 2019-12-24 15:26 文和-Mignet 阅读(2233) 评论(0) 推荐(0) 编辑
摘要: Part 2B We want Raft to keep a consistent, replicated log of operations. A call to Start() at the leader starts the process of adding a new operation 阅读全文
posted @ 2019-12-23 12:20 文和-Mignet 阅读(2807) 评论(0) 推荐(0) 编辑
摘要: 6.824 Lab 2: Raft 2A 阅读全文
posted @ 2019-12-14 15:09 文和-Mignet 阅读(3101) 评论(0) 推荐(0) 编辑
摘要: 6.824_Lab_1_MapReduce 阅读全文
posted @ 2019-12-14 14:42 文和-Mignet 阅读(2) 评论(0) 推荐(0) 编辑
摘要: Rust是什么 Rust 是一个系统编程语言,它注重三个方面:安全,速度和并发性。 特征: 1.没有垃圾回收机制,没有运行时,效率超过c++,直逼c语言 2.内存安全,并发安全,没有空指针 3.极其丰富的生态 https://github.com/rust-lang/rust ,https://cr 阅读全文
posted @ 2019-11-15 12:33 文和-Mignet 阅读(801) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 10 下一页