Managing mutable data in Elixir with Rust
lambdafunctions.com
Managing mutable data in Elixir with Rust
1–10 of 61 posts
Re: Managing mutable data in Elixir with Rust
#2We had some inconsistent build results (ours is an umbrella app) but apart from forcing a compilation and losing the ability to cache the rust builds, everything else has worked so well so we’re happy to get access to the massive rust ecosystem.
Re: Managing mutable data in Elixir with Rust
#3Unfortunately, I haven’t had a project where I’ve needed to use Rustler yet, though.
Re: Managing mutable data in Elixir with Rust
#4Re: Managing mutable data in Elixir with Rust
#5Re: Managing mutable data in Elixir with Rust
#6Cool writeup. A little ironic, since Erlang's `digraphs` are also mutable!
I don't normally see people consider (D)ETS tables as mutable, however.
Re: Managing mutable data in Elixir with Rust
#7Nice. I thought that Zig would be a nice language for writing NIFs - but of course Rust would be good too. Cool!
Re: Managing mutable data in Elixir with Rust
#8Nice. I thought that Zig would be a nice language for writing NIFs - but of course Rust would be good too. Cool!
Re: Managing mutable data in Elixir with Rust
#9Cool writeup. A little ironic, since Erlang's `digraphs` are also mutable!
Erlang's digraphs are stored in an ETS table, so aren't they only mutable in the same way that ETS tables are mutable? I don't normally see people consider (D)ETS tables as mutable, however.