I'm aware of different system allocators and now I'm trying to play around them in the context of JVM. The question is if it is possible to tell hotspot which allocator to use (e.g. I want JVM does all allocations with tcmalloc
, or probably simply call mmap
/munmap
every time).
Maybe there is a JVM option?