<div class="gmail_quote">On Tue, Oct 23, 2012 at 3:27 PM, 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 class="im"><br>
On Oct 22, 2012, at 10:13 AM, Dan Berindei &lt;<a href="mailto:dan.berindei@gmail.com">dan.berindei@gmail.com</a>&gt; wrote:<br>
<br>
&gt; On Mon, Oct 22, 2012 at 9:25 AM, Galder Zamarreño &lt;<a href="mailto:galder@redhat.com">galder@redhat.com</a>&gt; wrote:<br>
&gt;<br>
&gt; On Oct 19, 2012, at 6:28 PM, Dan Berindei &lt;<a href="mailto:dan.berindei@gmail.com">dan.berindei@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; &gt; Galder, what JDK are you using?<br>
&gt;<br>
&gt; java version &quot;1.6.0_35&quot;<br>
&gt; Java(TM) SE Runtime Environment (build 1.6.0_35-b10-428-11M3811)<br>
&gt; Java HotSpot(TM) 64-Bit Server VM (build 20.10-b01-428, mixed mode)<br>
&gt;<br>
&gt; &gt; OpenJDK 1.7 uses EmptyIterator.EMPTY_ITERATOR since 2007:<br>
&gt; &gt;<br>
&gt; &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>

&gt;<br>
&gt; Good that the figured out this is non-sense.<br>
&gt;<br>
&gt; &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>
&gt;<br>
&gt; Why not? We support JDK 1.6, so nothing stops them from running it.<br>
&gt;<br>
&gt; Until we baseline on JDK7 (or 8), I&#39;d leave it in.<br>
&gt;<br>
&gt;<br>
</div>&gt; My point was that it is a really big change, and further it imposes a burden on anyone writing code with collections in Infinispan. 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>
It&#39;s part of your job as pull request handler to check for these things, and many other bad practices that can be carried out… I don&#39;t see why is this different to other.<br>
<br>
What&#39;s missing here is a check list of things we should be checking for when we handle pull requests.<br>
<br>
I volunteer to do one once I got 2LC out of the way.<br>
<br>
&gt; 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>
It&#39;s doesn&#39;t affect performance directly, but indirectly.<br>
<br>
It&#39;s about memory consumption. If you use less memory to do the same work, less burden on GC, and less time spent doing GC.<br>
<div class="im HOEnZb"><br></div></blockquote><div><br>How much memory does Infinispan allocate for each put/get and how much of that is used by these iterators? Since we already use null instead of empty collections in lots of places, I bet it&#39;s not even 0.01%.<br>
<br>So yeah, these iterators do have an impact, but that impact is negligible, whereas the impact on the developers and reviewers to implement this change is not going to be negligible.<br><br>Of course, I might be wrong and this patch might improve throughput for local caches by 1%, but based on what I know so far that&#39;s not the case.<br>
<br> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im HOEnZb">
&gt;<br>
&gt;<br>
&gt; &gt;<br>
&gt; &gt; Cheers<br>
&gt; &gt; Dan<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; On Fri, Oct 19, 2012 at 5:50 PM, Vladimir Blagojevic &lt;<a href="mailto:vblagoje@redhat.com">vblagoje@redhat.com</a>&gt; wrote:<br>
&gt; &gt; Cool! Did not know about this! Is this original idea or others are<br>
&gt; &gt; already doing this?<br>
&gt; &gt; On 12-10-19 8:31 AM, Galder Zamarreño wrote:<br>
&gt; &gt; &gt; Hi all,<br>
&gt; &gt; &gt;<br>
&gt; &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; &gt;<br>
&gt; &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; &gt;<br>
&gt; &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; &gt;<br>
&gt; &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; &gt;<br>
&gt; &gt; &gt; Cheers,<br>
&gt; &gt; &gt; --<br>
&gt; &gt; &gt; Galder Zamarreño<br>
&gt; &gt; &gt; <a href="mailto:galder@redhat.com">galder@redhat.com</a><br>
&gt; &gt; &gt; <a href="http://twitter.com/galderz" target="_blank">twitter.com/galderz</a><br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; Project Lead, Escalante<br>
&gt; &gt; &gt; <a href="http://escalante.io" target="_blank">http://escalante.io</a><br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; Engineer, Infinispan<br>
&gt; &gt; &gt; <a href="http://infinispan.org" target="_blank">http://infinispan.org</a><br>
&gt; &gt; &gt;<br>
&gt;<br>
</div><div class="im HOEnZb">&gt; _______________________________________________<br>
&gt; infinispan-dev mailing list<br>
&gt; <a href="mailto:infinispan-dev@lists.jboss.org">infinispan-dev@lists.jboss.org</a><br>
&gt; <a href="https://lists.jboss.org/mailman/listinfo/infinispan-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/infinispan-dev</a><br>
<br>
<br>
</div><div class="im HOEnZb">--<br>
Galder Zamarreño<br>
<a href="mailto:galder@redhat.com">galder@redhat.com</a><br>
<a href="http://twitter.com/galderz" target="_blank">twitter.com/galderz</a><br>
<br>
Project Lead, Escalante<br>
<a href="http://escalante.io" target="_blank">http://escalante.io</a><br>
<br>
Engineer, Infinispan<br>
<a href="http://infinispan.org" target="_blank">http://infinispan.org</a><br>
<br>
<br>
</div><div class="HOEnZb"><div class="h5">_______________________________________________<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>
</div></div></blockquote></div><br>