You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Aleksey Shipilev (JIRA)" <ji...@apache.org> on 2008/03/23 21:05:24 UTC

[jira] Updated: (HARMONY-5634) [classlib][luni][performance] ObjectInputStream should use HashMap instead of Hashtable for internal storage

     [ https://issues.apache.org/jira/browse/HARMONY-5634?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Aleksey Shipilev updated HARMONY-5634:
--------------------------------------

    Attachment: 0002-serial-HashMap.patch

0002-serial-HashMap.patch
Changes the HashMap to Hashtable.

This patch may be committed in this form, presumably it's correct.
However, more beautiful solution will be declaring PRIMITIVE_CLASSES as UnmodifiableHashMap.

This patch gives up to +30% boost on SerialBench running at 8-core Clovertown.

> [classlib][luni][performance] ObjectInputStream should use HashMap instead of Hashtable for internal storage
> ------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-5634
>                 URL: https://issues.apache.org/jira/browse/HARMONY-5634
>             Project: Harmony
>          Issue Type: Improvement
>            Reporter: Aleksey Shipilev
>         Attachments: 0002-serial-HashMap.patch
>
>
> For now, ObjectInputStream uses Hashtable for two storages:
>  1. static PRIMITIVE_CLASSES, populated via static initializer, read by all instances (e.g. in theory by all threads)
>  2. private objectsRead, serving as instance-local buffer
> Both of these storages should be migrated to HashMap, since Hashtable.get is synchronized and synchronization is not needed here.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.