现在我们准备做第一个作业Lab1啦 wjk大神也在做6.824,可以参考大神的笔记https://github.com/zzzyyyxxxmmm/MIT6824_Distribute_System Part I The Map/Reduce implementation you are given is missing some pieces. Before you can write your first Map/Reduce function pair, you will need to f…
本节内容:Lect 2 RPC and Threads 线程:Threads allow one program to (logically) execute many things at once.The threads share memory. However, each thread includes some per-thread state: program counter, registers, stack. 下面以go语言写一个爬虫作为例子来介绍线程: Go example:…