Crates.io | rb-allocator |
lib.rs | rb-allocator |
version | 0.9.6 |
source | src |
created_at | 2022-05-25 17:01:03.968148 |
updated_at | 2022-06-22 15:03:21.689353 |
description | Memorry allocator for Ruby extensions |
homepage | https://github.com/oxidize-rb/rb-sys |
repository | https://github.com/oxidize-rb/rb-sys |
max_upload_size | |
id | 593641 |
size | 137,742 |
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.
Add the following to your Cargo.toml
:
[dependencies]
rb-allocator = "0.9.2"
Use the provided ruby_global_allocator!
macro
extern crate rb_allocator;
use rb_allocator::*;
ruby_global_allocator!();
Licensed under either of
at your option.
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.