Skip to content

Commit 10b9bac

Browse files
committed
adapt some more
1 parent fceb168 commit 10b9bac

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

index.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,38 @@
33
<h2>Rust concurrency tutorial</h2>
44
<ol>
55
<li> <a href="http://is.gd/MvBmlc">Hello World</a>
6+
<ul>
7+
<li>Goal: make it greet you by name
8+
<li>Time: 3 minutes
9+
</ul>
610
<li> <a href="http://is.gd/jsTBs9">Borrowing</a>
711
<ul>
812
<li>Goal: convert this code to use borrowing
913
instead so that it compiles
14+
<li>Time: 3 minutes
1015
</ul>
1116
<li> <a href="http://is.gd/ZP5hda">Sequential search</a>
1217
<ul>
1318
<li>Goal: implement <code>find_best_store</code>
19+
<li>Time: 10 minutes
1420
</ul>
1521
<li> <a href="http://is.gd/KnD8en">Parallel search</a>:
1622
<ul>
1723
<li>Goal: make this actually run in parallel
1824
<li>Extra bonus: avoid cloning the store name
25+
<li>Time: 10 minutes
1926
</ul>
2027
<li> <a href="http://is.gd/QJkv02">Shared memory </a>:
2128
<ul>
2229
<li>Goal: Adapt your previous code to use `Arc`
2330
<li>Extra bonus: How can you minimize cloning the underlying shopping list?
31+
<li>Time: 10 minutes
2432
</ul>
2533
<li> <a href="http://is.gd/mgC70x">Introduce Mutex</a>:
2634
<ul>
2735
<li>Goal: Adapt your previous code to introduce a mutex
2836
and use it to find the best price
37+
<li>Time: 10 minutes
2938
</ul>
3039
</ol>
3140
</body>

0 commit comments

Comments
 (0)