Reduce GC pressure when loading LODs from disk

This commit is contained in:
James Seibel
2026-01-27 18:21:08 -06:00
parent 6d3288ec42
commit 59a8e31507
24 changed files with 644 additions and 190 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ public class VarintTest
// read stream
try (DhDataInputStream inputStream = DhDataInputStream.create(byteArrayList, EDhApiDataCompressionMode.UNCOMPRESSED))
try (DhDataInputStream inputStream = DhDataInputStream.create(byteArrayList, EDhApiDataCompressionMode.UNCOMPRESSED, null /*no checkout needed for uncompressed*/))
{
int encodedValue = VarintUtil.readVarint(inputStream);
int decodedValue = VarintUtil.zigzagDecode(encodedValue);