Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8075775

javac, it should be investigated if closureCache can be implemented with better data structures

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Won't Fix
    • Icon: P4 P4
    • tbd
    • 8, 9
    • tools

      Our closureCache at Types is implemented using our List:

      private Map<Type,List<Type>> closureCache = new HashMap<>();

      so there is a map from a type to a sorted list of types. I think that a linked list is not the best data structure to implement a list that should be sorted. Depending on the use cases a balanced tree, a plain java.util.ArrayList or a heap should be way better. I agree that if there is no performance slowdown, comparing the current implementation with all the alternatives, we can keep the implementation as it is.

            vromero Vicente Arturo Romero Zaldivar
            vromero Vicente Arturo Romero Zaldivar
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: