9

我正在使用菱形运算符来启动列表中的对象。然而,随着数组对象数量的增加,编译时间从几秒增加到几小时。我的 Eclipse 自动构建使我的 Eclipse 无响应。然后我注意到这是一个javac问题。当我用编译时间替换所有<>内容<String, List<Category>>时,只需几秒钟。这是我做错了什么还是只是Java性能问题?

这是我的代码,它需要 Java 几个小时才能编译(或使 javac v8u25 崩溃)​​:

    List<Pair<String, List<Category>>> categoryMappings = null;

    public void reloadStaticData() {                  
      // Left one is the provider's category and right one is ours
      try(UoW luow = CoreModule.getInstance(UoW.class)) {
        CategoryRepo categoryRepo = luow.getCategoryRepo();
        categoryMappings = Arrays.asList(

                  // Nightlife
                  new ImmutablePair<>("Bars", Arrays.asList(categoryRepo.findByName("Bar & Pubs").get())),
                  new ImmutablePair<>("Ski-Bar", Arrays.asList(categoryRepo.findByName("Bar & Pubs").get())),
                  new ImmutablePair<>("Bar", Arrays.asList(categoryRepo.findByName("Bar & Pubs").get())),
                  new ImmutablePair<>("Beer", Arrays.asList(categoryRepo.findByName("Bar & Pubs").get())),
                  new ImmutablePair<>("Pubs", Arrays.asList(categoryRepo.findByName("Bar & Pubs").get())),
                  new ImmutablePair<>("Clubs", Arrays.asList(categoryRepo.findByName("Bar & Pubs").get())),
                  new ImmutablePair<>("Dance", Arrays.asList(categoryRepo.findByName("Bar & Pubs").get()
                          ,categoryRepo.findByName("Clubs").get())),    
                  // if I got more than 20 of these ImmutablePairs, javac crashes or takes hours to compile
      );
      }
    }

编辑: 正如 Sotirios 在评论中提到的,这似乎是 JDK 中的一个报告问题:

类型推断指数编译性能: https ://bugs.openjdk.java.net/browse/JDK-8055984

类型推理性能回归: https ://bugs.openjdk.java.net/browse/JDK-8048838

4

2 回答 2

2

我目前正在研究JEP-215 分层归因。这个 JEP 的目标是改进 javac 中的属性代码,并作为一个副作用来提高编译器的性能。例如,错误JDK-8055984中列出的代码是由“普通”Javac9 编译的:很多时间!当前版本的分层归因在大约 2.5 秒内编译它,这要好得多。分层归因的代码尚未公开。我希望它会这么快。与此同时,这种或报告真的很有用。

编辑:如果有人想尝试分层归因,仍在开发中,请查看此公告:所有分层归因

于 2015-03-09T17:00:40.600 回答
0

改变

List<Pair<String, List<Category>>> categoryMappings = null;

List<? extends Pair<String, List<Category>>> categoryMappings = null;

看看这是否加快了速度。否则,我的 JDK/IDE (IntelliJ) 不会编译您的代码片段。

于 2015-01-04T17:21:11.087 回答