Crates.io | re_memory |
lib.rs | re_memory |
version | 0.19.1 |
source | src |
created_at | 2023-02-12 16:21:36.043547 |
updated_at | 2024-11-05 10:51:33.41612 |
description | Run-time memory tracking and profiling. |
homepage | https://rerun.io |
repository | https://github.com/rerun-io/rerun |
max_upload_size | |
id | 783295 |
size | 46,924 |
Part of the rerun
family of crates.
This is a library for tracking memory use in a running application. This is useful for tracking leaks, and for figuring out what is using up memory.
re_memory
includes an opt-in sampling profiler for allocation callstacks.
Each time memory is allocated there is a chance a callstack will be collected.
This information is tracked until deallocation.
You can thus get information about what callstacks lead to the most live allocations,
giving you a very useful memory profile of your running app, with minimal overhead.