|
|
|
|
|
by mrkeen
481 days ago
|
|
It's not that bad. We just don't have the equivalent of GC for multi-threading yet, so the advice necessarily needs to be "just remember to take and release locks" (same as remembering to malloc and free). Hopefully someone will invent something like STM [1] in the distant year of 2007 or so [2]. It has actual thread-safe data structures. Not just the current choice between wrong-answer-if-you-dont-lock and insane-crashing-if-you-dont-lock. [1] https://www.adit.io/posts/2013-05-15-Locks,-Actors,-And-STM-... [2] https://youtu.be/4caDLTfSa2Q?feature=shared |
|