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
{{ message }}
This repository has been archived by the owner on Jan 4, 2024. It is now read-only.
I'm thinking about venturing down the path of implementing some persistent data structures in Rust, namely RRB-vectors and, subsequently, hitchhiker trees, so this has been a great example to study. I'm curious about the use of alloc/libc here. I take it you're essentially trying to make up for the lack of GC? If so, I'm curious if these kind of structures could be built with less low-level memory manipulation, using something like “epoch-based memory reclamation”. Thoughts?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I'm thinking about venturing down the path of implementing some persistent data structures in Rust, namely RRB-vectors and, subsequently, hitchhiker trees, so this has been a great example to study. I'm curious about the use of alloc/libc here. I take it you're essentially trying to make up for the lack of GC? If so, I'm curious if these kind of structures could be built with less low-level memory manipulation, using something like “epoch-based memory reclamation”. Thoughts?
The text was updated successfully, but these errors were encountered: