|
|
|
|
|
by vohvae
1869 days ago
|
|
I haven't looked at the benchmark implementations but one particular area I've heard other languages to lag behind java is cost of allocation. Since openjdk has had to cope with lack of (user defined) value types and the garbage heavy ecosystem it has a very well optimised GC for handling heap allocations. I wonder if the results will be different if other language benchmarks (C++ or rust) use different allocators (eg: bump allocator, per request collectors) for cheaper allocation. |
|