Re: RFR: JDK-8310913 Move ReferencedKeyMap to jdk.internal so it may be shared [v4]

2023-07-06 Thread Mandy Chung
On Thu, 6 Jul 2023 12:20:15 GMT, Jim Laskey wrote: >> java.lang.runtime.ReferencedKeyMap was introduced to provide a concurrent >> caching scheme for Carrier objects. The technique used is generally useful >> for a variety of caching schemes and is being moved to be shared in other >> parts of

Re: RFR: JDK-8310913 Move ReferencedKeyMap to jdk.internal so it may be shared [v4]

2023-07-06 Thread Mandy Chung
On Thu, 6 Jul 2023 12:20:15 GMT, Jim Laskey wrote: >> java.lang.runtime.ReferencedKeyMap was introduced to provide a concurrent >> caching scheme for Carrier objects. The technique used is generally useful >> for a variety of caching schemes and is being moved to be shared in other >> parts of

Re: RFR: JDK-8310913 Move ReferencedKeyMap to jdk.internal so it may be shared [v4]

2023-07-06 Thread Jim Laskey
> java.lang.runtime.ReferencedKeyMap was introduced to provide a concurrent > caching scheme for Carrier objects. The technique used is generally useful > for a variety of caching schemes and is being moved to be shared in other > parts of the jdk. The MethodType interning case is one example.