-
Enhancement
-
Resolution: Fixed
-
P3
-
6u31, 6-pool
-
b118
-
generic
-
generic
-
Not verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2200880 | 6u27 | Sean Coffey | P3 | Closed | Fixed | b02 |
Calendar.cachedLocaleData is defined as a static Hashtable<Locale, int[]>(3). cachedLocaleData is accessed upon every Calender object allocation, i.e. via Calendar constructor. Hence, an application with high Calendar object allocations may experience lock contention since cachedLocaleData is shared across all Calendar object instances.
Hence, cachedLocaleData should be migrated to a static ConcurrentHashMap<Locale, int[]>(3) to help elide lock contention.
Hence, cachedLocaleData should be migrated to a static ConcurrentHashMap<Locale, int[]>(3) to help elide lock contention.
- backported by
-
JDK-2200880 (cal) Calendar.cachedLocaleData should be transitioned from Hashtable to ConcurrentHashMap
-
- Closed
-
- duplicates
-
JDK-7145593 Blocking hashtable in calendar.setweekcountdata
-
- Closed
-