Range Causes extra memory allocations
zetoqu opened this issue · 1 comments
zetoqu commented
Hi,
Your project and hard-work is very much appreciated.
My use case needs the map to be ranged as fast as possible ( Maybe million of times every second and this behavior will continue for entire service duration) . However, the following line
Line 319 in f620963
cause memory allocation always. ( causing unnecessary garbage and thus GC cycles )
This memory allocation can go away if a fixed array is used instead.
Thank you.