|
|
|
|
|
by nostrademons
2402 days ago
|
|
Anyone else start thinking of Rust's mutable/immutable borrow system when reading the MESI algorithm? It's not quite the same - with Rust, mutable borrows are never shared, and you can never mutate a shared read-only borrow - but the principle seems like a simplification of the full MESI protocol. It seems like this would be generally applicable for a wide variety of distributed & concurrent applications. |
|