File tree Expand file tree Collapse file tree
src/main/java/org/hdf5javalib Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -393,7 +393,7 @@ public abstract class AbstractSpliterator<R> implements Spliterator<R> {
393393 private long currentIndex ;
394394 private final long limit ;
395395 private final long recordSize ;
396- private final int cacheSize = 10000 ; // Max records to cache
396+ private final int cacheSize = 100_000 ; // Max records to cache
397397 private ByteBuffer cacheBuffer ; // Cache for raw bytes
398398 private int cachePosition = 0 ; // Current position in cache (record index)
399399 private int cacheLimit = 0 ; // Number of records in cache
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ private void run() {
5555 // List all .h5 files in HDF5Examples resources directory
5656 // ATL03_20250302235544_11742607_006_01
5757// Path dirPath = Paths.get(Objects.requireNonNull(HDF5Debug.class.getClassLoader().getResource("HDF5Examples/h5ex_g_compact2.h5")).toURI());
58- Path dirPath = Paths .get ("c:/users/karnicho /Downloads/ATL03_20250302235544_11742607_006_01.h5" );
58+ Path dirPath = Paths .get ("c:/users/karln /Downloads/ATL03_20250302235544_11742607_006_01.h5" );
5959 processFile (dirPath );
6060 } catch (Exception e ) {
6161 throw new IllegalStateException (e );
You can’t perform that action at this time.
0 commit comments