Skip to content

GC optimization

Compare
Choose a tag to compare
@smrutilal2 smrutilal2 released this 07 Feb 20:33
· 29 commits to master since this release
8eb34a2

Java's for each loop is a big source of garbage. Every time it records a value, it creates an instance of ArrayList Iterator. The release addressed the issue by using the traditional index based for loop instead.