Closed caelunshun closed 3 years ago
I noticed poor performance when serializing arrays, and profiling revealed that i8_array, i32_array, etc. were allocating a string for each element. Removing the allocation increases performance by an order of magnitude.
i8_array
i32_array
Looks great!
I noticed poor performance when serializing arrays, and profiling revealed that
i8_array
,i32_array
, etc. were allocating a string for each element. Removing the allocation increases performance by an order of magnitude.