6.824 Distributed Systems
wineandchord
这个作者很懒,什么都没留下…
展开
-
mit 6.824 Distributed Systems L2 RPC and Threads
6.824 2020 Lecture 2: Infrastructure: RPC and threads Today: Threads and RPC in Go, with an eye towards the labs 文章目录Why Go?ThreadsThread = "thread of execution"Why threads?Is there an alternative to threads?Threading challenges: Why Go? good support for t原创 2020-05-20 15:15:56 · 361 阅读 · 0 评论 -
A Tour of Go 笔记
https://tour.golang.org/list 文章目录BasicsPackagesImportsExported namesFunctionsMultiple resultsNamed return valuesVariablesVariables with initializersShort variable declarationsBasic typesZero valuesType conversionsType inferenceConstantsNumeric Constants Ba原创 2020-05-19 20:18:17 · 191 阅读 · 0 评论 -
mit 6.824 Distributed Systems L1 Introduction
为什么选择分布式系统? parallelism fault tolerance physical security/isolated challenges: concurrency partial failure performance course structure lectures papers exams labs project(optional) Lab...原创 2020-05-06 23:59:18 · 147 阅读 · 0 评论 -
MapReduce 笔记
发表于 OSDI 2004 MapReduce 是一个编程模式以及其相关的处理并生成大数据的实现方式。map 函数用来处理一对 key-value 来生册灰姑娘一系列的中间 key-value ,reduce 函数讲有着相同的中间 key 的 value 合并起来。许多现实问题都可以在在这个模型下表示出来。 用这种函数式风格写成的程序本身就是并行的,并且能够在大型商业集群上执行。运行时系统可以处...原创 2020-05-06 23:11:56 · 104 阅读 · 0 评论