-
Bug
-
Resolution: Fixed
-
P3
-
9
-
b118
-
Verified
From an email thread:
A quick System.nanoTime() measuring of
try (FileSystem fs = FileSystems.newFileSystem(
new URI("jar", ...), Collections.emptyMap())) {}
try (ZipFile zf = new ZipFile(args[0])) {}
on rt.jar suggests zipfile initialization is about 5 times faster than zipfs's.
Something need to be done.
A quick System.nanoTime() measuring of
try (FileSystem fs = FileSystems.newFileSystem(
new URI("jar", ...), Collections.emptyMap())) {}
try (ZipFile zf = new ZipFile(args[0])) {}
on rt.jar suggests zipfile initialization is about 5 times faster than zipfs's.
Something need to be done.
- relates to
-
JDK-8353167 (zipfs) Review the name and semantics of zipinfo-time ZipFileSystem property
-
- Open
-
-
JDK-8352642 Set zipinfo-time=false when constructing zipfs FileSystem in com.sun.tools.javac.file.JavacFileManager$ArchiveContainer for better performance
-
- Open
-