jemalloc.NET
jemalloc.NET copied to clipboard
A native memory manager for .NET
Why was it abandoned suddenly?
Since `Memory` and related types and the System.Memory package is now generally available on all .NET platforms, all jemalloc.NET API types like `FixedBuffer` should utilize these types.
Hi, Thanks for your very interesting project. I found it as I'm trying to create 16-byte memory aligned arrays in .NET - arrays of floats that I have to pass...
Could you please add a terse how-to right in readme.md with C# use-case. Want to know how this approach can be used with say Person{ string Name, int Age, DateTime...
Add documentation for SafeBuffer, HugeBuffer classes, and the Je.* methods and properties of the low-level API.
General design for a benchmark run over an array/buffer should be: 1. Compute the baseline value using builtin .NET operators and methods from System.Math. 2. Compute the value using JEM...
We should catch keyboard Ctrl-S and abort the running benchmark thread(s).