<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">

<head>
<meta http-equiv=Content-Type content="text/html; charset=iso-8859-2">
<meta name=Generator content="Microsoft Word 12 (filtered medium)">
<style>
<!--
 /* Font Definitions */
 @font-face
        {font-family:Helvetica;
        panose-1:2 11 6 4 2 2 2 2 2 4;}
@font-face
        {font-family:Helvetica;
        panose-1:2 11 6 4 2 2 2 2 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman","serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.apple-style-span
        {mso-style-name:apple-style-span;}
span.EmailStyle18
        {mso-style-type:personal-reply;
        font-family:"Calibri","sans-serif";
        color:#1F497D;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-size:10.0pt;}
@page Section1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.Section1
        {page:Section1;}
-->
</style>
<!--[if gte mso 9]><xml>
 <o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
 <o:shapelayout v:ext="edit">
  <o:idmap v:ext="edit" data="1" />
 </o:shapelayout></xml><![endif]-->
</head>

<body lang=EN-US link=blue vlink=purple style='word-wrap: break-word;
-webkit-nbsp-mode: space;-webkit-line-break: after-white-space'>

<div class=Section1>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'>&#8220;</span>put(K, V) is overloaded with put(K, V, String
group)&#8221;<o:p></o:p></p>

<p class=MsoNormal><o:p>&nbsp;</o:p></p>

<p class=MsoNormal>Instead of using a String could this be changed to Object? 
We&#8217;ve tested this feature in the past with other systems and typically
for us our &#8220;group&#8221; is not a String.  Yes, we could convert our
objects to Strings but I&#8217;m not sure I see the point if this could just be
an Object.<o:p></o:p></p>

<p class=MsoNormal><o:p>&nbsp;</o:p></p>

<p class=MsoNormal>Also, I&#8217;m not sure why annotations wouldn&#8217;t work
if the annotation is for the method to invoke to get the group and not
statically defining a group.  Other systems I&#8217;ve used employ this
technique.  <o:p></o:p></p>

<p class=MsoNormal><o:p>&nbsp;</o:p></p>

<p class=MsoNormal>Annotations are fine as an option (if they work for this
case) but as with my post in the user forum if you were to go this route I&#8217;d
like it if there were an option of defining this as in a configuration file as
well to not put constraints on the object model we create.<o:p></o:p></p>

<p class=MsoNormal><o:p>&nbsp;</o:p></p>

<p class=MsoNormal>Bryan<span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'><o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'><o:p>&nbsp;</o:p></span></p>

<div>

<div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in'>

<p class=MsoNormal><b><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>From:</span></b><span
style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'> infinispan-dev-bounces@lists.jboss.org
[mailto:infinispan-dev-bounces@lists.jboss.org] <b>On Behalf Of </b>Manik
Surtani<br>
<b>Sent:</b> Monday, March 22, 2010 9:45 AM<br>
<b>To:</b> infinispan -Dev List<br>
<b>Subject:</b> [infinispan-dev] A mechanism for users to control data
localitywhen using DIST<o:p></o:p></span></p>

</div>

</div>

<p class=MsoNormal><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='margin-bottom:12.0pt'>So there have been some
requests for this ability [1], and although I did blog about some strategies to
achieve this [2], one of which Brian plans to employ for HTTP session state in
JBoss AS 6, I think this is something generally useful and a simpler &quot;user&quot;
solution should be offered. &nbsp;&nbsp;Annotations won't work for a number of
reasons (mainly because this affinity information should be associated with a
key instance, not a key class). &nbsp;So here is what I propose, from an API
perspective:<br>
<br>
put(K, V) is overloaded with put(K, V, String group). &nbsp;&quot;group&quot;
is an arbitrary, user-defined string, and it is up to the API user to ensure
these are unique, and related entries are properly grouped.<br>
<br>
Note that this is similar in some ways to another JIRA proposed by Mindaugas
Žakšauskas some months ago: ISPN-312 [3].<br>
<br>
In terms of implementation, I expect we could add a DataAffinityInterceptor
which would:<br>
<br>
* for puts, instead of putting (K, V) in the cache, it would put (group,
AtomicMap) and (K, group) in the cache, and (K, V) in the AtomicMap.
&nbsp;Similar behaviour for other writes.<br>
* for gets, instead of retrieving (K), from the cache, it would retrieve K to
get the group id, and then retrieve the atomic map related to the group before
retrieving the key.<br>
<br>
The effect of this is to hide the complexities of interacting with AtomicMaps
from users by providing a convenience API.<br>
<br>
What do people think?<br>
<br>
Cheers<br>
Manik<br>
<br>
[1]&nbsp;<a href="https://jira.jboss.org/jira/browse/ISPN-359">https://jira.jboss.org/jira/browse/ISPN-359</a><br>
[2]&nbsp;<a
href="http://infinispan.blogspot.com/2009/08/distribution-instead-of-buddy.html">http://infinispan.blogspot.com/2009/08/distribution-instead-of-buddy.html</a><br>
[3]&nbsp;<a href="https://jira.jboss.org/jira/browse/ISPN-312">https://jira.jboss.org/jira/browse/ISPN-312</a><o:p></o:p></p>

<div>

<div>

<div>

<p class=MsoNormal><span style='font-size:9.0pt;font-family:"Helvetica","sans-serif";
color:black'>--<o:p></o:p></span></p>

</div>

<div>

<p class=MsoNormal><span style='font-size:9.0pt;font-family:"Helvetica","sans-serif";
color:black'>Manik Surtani<o:p></o:p></span></p>

</div>

<div>

<p class=MsoNormal><span style='font-size:9.0pt;font-family:"Helvetica","sans-serif";
color:black'><a href="mailto:manik@jboss.org">manik@jboss.org</a><o:p></o:p></span></p>

</div>

<div>

<p class=MsoNormal><span style='font-size:9.0pt;font-family:"Helvetica","sans-serif";
color:black'>Lead, Infinispan<o:p></o:p></span></p>

</div>

<div>

<p class=MsoNormal><span style='font-size:9.0pt;font-family:"Helvetica","sans-serif";
color:black'>Lead, JBoss Cache<o:p></o:p></span></p>

</div>

<div>

<p class=MsoNormal><span style='font-size:9.0pt;font-family:"Helvetica","sans-serif";
color:black'><a href="http://www.infinispan.org">http://www.infinispan.org</a><o:p></o:p></span></p>

</div>

<div>

<p class=MsoNormal><span style='font-size:9.0pt;font-family:"Helvetica","sans-serif";
color:black'><a href="http://www.jbosscache.org">http://www.jbosscache.org</a><o:p></o:p></span></p>

</div>

<div>

<p class=MsoNormal><span style='font-size:9.0pt;font-family:"Helvetica","sans-serif";
color:black'><o:p>&nbsp;</o:p></span></p>

</div>

</div>

<p class=MsoNormal><span style='font-size:9.0pt;font-family:"Helvetica","sans-serif";
color:black'><br>
<br>
</span><o:p></o:p></p>

</div>

<p class=MsoNormal><o:p>&nbsp;</o:p></p>

</div>

--------------------------------------------------------------------- <br>
This transmission (including any attachments) may contain confidential information, privileged material (including material protected by the solicitor-client or other applicable privileges), or constitute non-public information. Any use of this information by anyone other than the intended recipient is prohibited. If you have received this transmission in error, please immediately reply to the sender and delete this information from your system. Use, dissemination, distribution, or reproduction of this transmission by unintended recipients is not authorized and may be unlawful.
</body>

</html>