<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style>
</head>
<body class='hmmessage'>
Yes, but its because&nbsp;I changed the&nbsp;meaning of maxEntries ==&nbsp;-1. It used to create a ConcurrentHashMap that has a max size&nbsp;of 2^30.&nbsp;In my fork, when -1 is used it creates a BoundedConcurrentHashMap with a max size of 2^30. My guess is that a ConcurrentHashMap grows as items are placed into the map,&nbsp;whereas the BoundedConcurrentHashMap&nbsp;pre-allocates structures&nbsp;for that designated size.&nbsp;So, I am thinking that I need to account for the size of the JVM to determine the maximum entries for the BoundedConcurrentHashMap. <BR>&nbsp;<BR>

<HR id=stopSpelling>
Date: Thu, 20 Jan 2011 12:34:22 -0300<BR>From: vblagoje@redhat.com<BR>To: infinispan-dev@lists.jboss.org<BR>Subject: Re: [infinispan-dev] ISPN-863 - Thoughts / Questions<BR><BR>
<META content="Microsoft SafeHTML" name=Generator>On 11-01-20 9:52 AM, david marion wrote: 
<BLOCKQUOTE cite=mid:COL113-W385C1BE2A00CA58418309FD1F90@phx.gbl>
<STYLE>
.ExternalClass .ecxhmmessage P
{padding:0px;}
.ExternalClass body.ecxhmmessage
{font-size:10pt;font-family:Tahoma;}

</STYLE>
I did exactly that last night. I built a test that allocated HashEntry&lt;K,V&gt;[] just like&nbsp;it does in&nbsp;the Segment constructor. I don't have the numbers&nbsp;in front of me right now,&nbsp;but at the maximum size (2^30) and without specifying concurrency&nbsp;it was&nbsp;trying to allocate 32 Segment objects&nbsp;each having&nbsp;a HashEntry&lt;K,V&gt;[]&nbsp;with 2^25 elements. Each one of these HashEntry&lt;K,V&gt;[] takes up&nbsp;around 128MB of&nbsp;memory.<BR></BLOCKQUOTE>Ok, let me just make sure I understand you. You are saying that BCHM is allocating too much memory if a certain constructor is used? <BR><BR>_______________________________________________ infinispan-dev mailing list infinispan-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/infinispan-dev                                               </body>
</html>