You are viewing a plain text version of this content. The canonical link for it is here.
Posted to odf-dev@incubator.apache.org by "fanliwen (JIRA)" <ji...@apache.org> on 2018/04/11 11:49:00 UTC

[jira] [Created] (ODFTOOLKIT-473) cache alien element and attribute class to make it faster in OdfXMLFactory

fanliwen created ODFTOOLKIT-473:
-----------------------------------

             Summary: cache alien element and attribute class to make it faster in OdfXMLFactory
                 Key: ODFTOOLKIT-473
                 URL: https://issues.apache.org/jira/browse/ODFTOOLKIT-473
             Project: ODF Toolkit
          Issue Type: Improvement
          Components: odfdom
    Affects Versions: 0.6.2-incubating
            Reporter: fanliwen
             Fix For: 0.6.2-incubating


Hi,

Class.forName may not be an efficient method. and in <code>org.odftoolkit.odfdom.pkg{color:#cc7832}.{color}OdfXMLFactory    line:153<code> Class, it use Class.forName to find the Element/Atrribute Class. The <code>classCache</code> map make it better to find the Class. But we need a cache for Alien Element/Atrribute Class too, otherwise it will find the same alien Class by Class.forName again and again. It take too much of CPU cycle.

It show you in the attachment which a snapshot by JProfiler.It call the Class.forName 39459 times to find the same Class.

And this is my pull request in GitHub: 

Regards.

ravenq.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)