7 releases

0.9.6 Jun 22, 2022
0.9.5 Jun 21, 2022
0.9.0 May 25, 2022

#431 in Memory management

MIT/Apache

105KB
2K SLoC

rb-allocator

Join the discussion

A wrapper around the Rust system allocator which reports memory usage back to the Ruby GC. This means that Ruby will have an accurate representation of Rust's memory usage, and thus know when to GC.

Usage

  1. Add the following to your Cargo.toml:

    [dependencies]
    rb-allocator = "0.9.2"
    
  2. Use the provided ruby_global_allocator! macro

    extern crate rb_allocator;
    
    use rb_allocator::*;
    
    ruby_global_allocator!();
    

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~0–2.4MB
~36K SLoC