You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey I am trying to understand some of the challenges around using shared memory in rust and found this crate through a rust-lang issue. Could you give me a short summary if there are known issues with this at the moment or not? thank you!
The text was updated successfully, but these errors were encountered:
Well, I'm not working on Rust at the moment, so this crate is unmaintained. The main issue with shared memory is that it's very difficult to stop it from being closed, so any read is unsafe, and it's difficult to see how to make it safe. If you assume that other processes don't do that, I think it's a safe abstraction. There might be a better trait for "data that has no layout requirements" these days.
Hey I am trying to understand some of the challenges around using shared memory in rust and found this crate through a rust-lang issue. Could you give me a short summary if there are known issues with this at the moment or not? thank you!
The text was updated successfully, but these errors were encountered: