[webbeans-issues] [JBoss JIRA] Commented: (WBRI-358) Perform load testing for scalability hotspots

Pete Muir (JIRA) jira-events at lists.jboss.org
Fri Aug 14 15:11:26 EDT 2009


    [ https://jira.jboss.org/jira/browse/WBRI-358?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12480920#action_12480920 ] 

Pete Muir commented on WBRI-358:
--------------------------------

An obvious scalability issue will be the reflection layer, which performs extensive caching to speed up usage. It scales at O(CM) where C is the number of classes, M is the no of members in a class which reduces to O(N^2).

Options include:

* Expose to container so it provides an impl - someone elses problem
* Perform analysis, and for infrequently used operations perform direct access to class or member with no caching
* Verify that no uneeded data is stored
* Investigate lazy initialization (concurrency issues abound)
* Investigate discarding information once bean definition is built, or provide ability to create runtime version

> Perform load testing for scalability hotspots
> ---------------------------------------------
>
>                 Key: WBRI-358
>                 URL: https://jira.jboss.org/jira/browse/WBRI-358
>             Project: Web Beans
>          Issue Type: Sub-task
>            Reporter: Pete Muir
>
> Grouping issue for suspected scalability hotspots

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the weld-issues mailing list