https://jira.jboss.org/jira/browse/JBCL-20
I was seeing a lot of time spent in CopyOnWriteArraySet when checking
blacklisting in the classloader.
The reason is that the class isn't intended for large data sets,
in fact it uses a CopyOnWriteArrayList underneath and does linear traversals.
I've changed the usage to a ConcurrentHashMap where I effectively
only use the key side.
It might be an idea to add a ConcurrentSet implementation to common-core
that is implemented on top of a ConcurrentHashMap?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4166358#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...