<br><div class="gmail_quote">On Mon, Oct 22, 2012 at 3:47 PM, Manik Surtani <span dir="ltr">&lt;<a href="mailto:manik@jboss.org" target="_blank">manik@jboss.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div style="word-wrap:break-word"><br><div><div class="im"><div>On 22 Oct 2012, at 09:13, Dan Berindei &lt;<a href="mailto:dan.berindei@gmail.com" target="_blank">dan.berindei@gmail.com</a>&gt; wrote:</div><br><blockquote type="cite">
<div class="gmail_quote">On Mon, Oct 22, 2012 at 9:25 AM, Galder Zamarreño <span dir="ltr">&lt;<a href="mailto:galder@redhat.com" target="_blank">galder@redhat.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div><br>
On Oct 19, 2012, at 6:28 PM, Dan Berindei &lt;<a href="mailto:dan.berindei@gmail.com" target="_blank">dan.berindei@gmail.com</a>&gt; wrote:<br>
<br>
&gt; Galder, what JDK are you using?<br>
<br>
</div>java version &quot;1.6.0_35&quot;<br>
Java(TM) SE Runtime Environment (build 1.6.0_35-b10-428-11M3811)<br>
Java HotSpot(TM) 64-Bit Server VM (build 20.10-b01-428, mixed mode)<br>
<div><br>
&gt; OpenJDK 1.7 uses EmptyIterator.EMPTY_ITERATOR since 2007:<br>
&gt;<br>
&gt; <a href="http://hg.openjdk.java.net/jdk7/jdk7/jdk/annotate/37a05a11f281/src/share/classes/java/util/Collections.java" target="_blank">http://hg.openjdk.java.net/jdk7/jdk7/jdk/annotate/37a05a11f281/src/share/classes/java/util/Collections.java</a><br>


<br>
</div>Good that the figured out this is non-sense.<br>
<div><br>
&gt; I don&#39;t have JDK 1.6 sources on hand to check, but I don&#39;t think it&#39;s worth optimizing for such an old version anyway.<br>
<br>
</div>Why not? We support JDK 1.6, so nothing stops them from running it.<br>
<br>
Until we baseline on JDK7 (or 8), I&#39;d leave it in.<br>
<div><div><br></div></div></blockquote><div><br>My point was that it is a really big change,</div></div></blockquote><div><br></div></div><div>Why?  The patch was trivial.  Implementing it is easy, and then doing a search and replace on the codebase again resulted in a pretty small patch.</div>
<div class="im"><br><blockquote type="cite"><div class="gmail_quote"><div> and further it imposes a burden on anyone writing code with collections in Infinispan.</div></div></blockquote><div><br></div></div><div>Is it that hard for a reviewer to spot?  :)  Maybe even write a script to check and warn for this.</div>
<br></div></div></blockquote><div><br>I&#39;m not saying it&#39;s hard, but he&#39;ll have to write a comment, the author will have to notice the comment and update the PR, then the reviewer will have to notice the PR update and look at it again, and so on.<br>
<br>All these things take time, and I would rather not invest that time if we can&#39;t see an improvement in performance.<br><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div style="word-wrap:break-word"><div><blockquote type="cite"><div class="im"><div class="gmail_quote"><div> I&#39;m sure we will spend non-trivial amounts of time during reviews pointing out places there the author should have used InfinispanCollections instead of Collections...<br>

<br>I would be willing to go for it if a benchmark showed a significant increase in performance after the change, but you didn&#39;t mention any benchmarks, so I guessed that you didn&#39;t see a big difference...<br><br>

<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div>
&gt;<br>
&gt; Cheers<br>
&gt; Dan<br>
&gt;<br>
&gt;<br>
&gt; On Fri, Oct 19, 2012 at 5:50 PM, Vladimir Blagojevic &lt;<a href="mailto:vblagoje@redhat.com" target="_blank">vblagoje@redhat.com</a>&gt; wrote:<br>
&gt; Cool! Did not know about this! Is this original idea or others are<br>
&gt; already doing this?<br>
&gt; On 12-10-19 8:31 AM, Galder Zamarreño wrote:<br>
&gt; &gt; Hi all,<br>
&gt; &gt;<br>
&gt; &gt; Re: <a href="https://github.com/galderz/infinispan/commit/0609207d13216de81d77ff51dc20652ce270c635" target="_blank">https://github.com/galderz/infinispan/commit/0609207d13216de81d77ff51dc20652ce270c635</a><br>
&gt; &gt;<br>
&gt; &gt; Please avoid using these JDK methods where possible. I&#39;ve created alternative versions in InfinispanCollections util class that provide a better implementation.<br>
&gt; &gt;<br>
&gt; &gt; The problem with the JDK versions is that even if these collections are immutable, if you wanna iterate them (i.e. for(X : emptySet) ), they&#39;ll create a brand new Iterator every time they&#39;re looped, and that generates useless garbage.<br>


&gt; &gt;<br>
&gt; &gt; The InfinispanCollections versions of emptyX will return a constant singleton iterator which avoids this problem, and avoids the need for client code to check if the collection is empty before looping.<br>
&gt; &gt;<br>
&gt; &gt; Cheers,<br>
&gt; &gt; --<br>
&gt; &gt; Galder Zamarreño<br>
&gt; &gt; <a href="mailto:galder@redhat.com" target="_blank">galder@redhat.com</a><br>
&gt; &gt; <a href="http://twitter.com/galderz" target="_blank">twitter.com/galderz</a><br>
&gt; &gt;<br>
&gt; &gt; Project Lead, Escalante<br>
&gt; &gt; <a href="http://escalante.io/" target="_blank">http://escalante.io</a><br>
&gt; &gt;<br>
&gt; &gt; Engineer, Infinispan<br>
&gt; &gt; <a href="http://infinispan.org/" target="_blank">http://infinispan.org</a><br>
&gt; &gt;<br></div></div></blockquote></div><br></div><div class="im">
_______________________________________________<br>infinispan-dev mailing list<br><a href="mailto:infinispan-dev@lists.jboss.org" target="_blank">infinispan-dev@lists.jboss.org</a><br><a href="https://lists.jboss.org/mailman/listinfo/infinispan-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/infinispan-dev</a></div>
</blockquote></div><br><div>
<span style="border-spacing:0px;text-indent:0px;letter-spacing:normal;font-variant:normal;text-align:-webkit-auto;font-style:normal;font-weight:normal;line-height:normal;border-collapse:separate;text-transform:none;font-size:medium;white-space:normal;font-family:Helvetica;word-spacing:0px"><div style="word-wrap:break-word">
<span style="border-spacing:0px;text-indent:0px;letter-spacing:normal;font-variant:normal;text-align:-webkit-auto;font-style:normal;font-weight:normal;line-height:normal;border-collapse:separate;text-transform:none;font-size:medium;white-space:normal;font-family:Helvetica;word-spacing:0px"><div style="word-wrap:break-word">
<span style="border-spacing:0px;text-indent:0px;letter-spacing:normal;font-variant:normal;font-style:normal;font-weight:normal;line-height:normal;border-collapse:separate;text-transform:none;font-size:medium;white-space:normal;font-family:Helvetica;word-spacing:0px"><div style="word-wrap:break-word">
<div>--</div><div>Manik Surtani</div><div><a href="mailto:manik@jboss.org" target="_blank">manik@jboss.org</a></div><div><a href="http://twitter.com/maniksurtani" target="_blank">twitter.com/maniksurtani</a></div><div><br>
</div><div><div>Platform Architect, JBoss Data Grid</div><div><a href="http://red.ht/data-grid" target="_blank">http://red.ht/data-grid</a></div></div></div></span></div></span></div></span>
</div>
<br></div><br>_______________________________________________<br>
infinispan-dev mailing list<br>
<a href="mailto:infinispan-dev@lists.jboss.org">infinispan-dev@lists.jboss.org</a><br>
<a href="https://lists.jboss.org/mailman/listinfo/infinispan-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/infinispan-dev</a><br></blockquote></div><br>