
6.824 Distributed Systems
wineandchord
这个作者很懒,什么都没留下…
展开
-
mit 6.824 Distributed Systems L2 RPC and Threads
6.824 2020 Lecture 2: Infrastructure: RPC and threadsToday: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 · 380 阅读 · 0 评论 -
A Tour of Go 笔记
https://tour.golang.org/list文章目录BasicsPackagesImportsExported namesFunctionsMultiple resultsNamed return valuesVariablesVariables with initializersShort variable declarationsBasic typesZero valuesType conversionsType inferenceConstantsNumeric ConstantsBa原创 2020-05-19 20:18:17 · 234 阅读 · 0 评论 -
mit 6.824 Distributed Systems L1 Introduction
为什么选择分布式系统?parallelismfault tolerancephysicalsecurity/isolatedchallenges:concurrencypartial failureperformancecourse structurelecturespapersexamslabsproject(optional)Lab...原创 2020-05-06 23:59:18 · 161 阅读 · 0 评论 -
MapReduce 笔记
发表于 OSDI 2004MapReduce 是一个编程模式以及其相关的处理并生成大数据的实现方式。map 函数用来处理一对 key-value 来生册灰姑娘一系列的中间 key-value ,reduce 函数讲有着相同的中间 key 的 value 合并起来。许多现实问题都可以在在这个模型下表示出来。用这种函数式风格写成的程序本身就是并行的,并且能够在大型商业集群上执行。运行时系统可以处...原创 2020-05-06 23:11:56 · 112 阅读 · 0 评论