<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <id>http://groups.google.co.uk/group/comp.lang.java.programmer</id>
  <title type="text">comp.lang.java.programmer Google Group</title>
  <subtitle type="text">
  Programming in the Java language.
  </subtitle>
  <link href="/group/comp.lang.java.programmer/feed/atom_v1_0_msgs.xml" rel="self" title="comp.lang.java.programmer feed"/>
  <updated>2009-11-25T01:42:57Z</updated>
  <generator uri="http://groups.google.co.uk" version="1.99">Google Groups</generator>
  <entry>
  <author>
  <name>Roedy Green</name>
  <email>see_webs...@mindprod.com.invalid</email>
  </author>
  <updated>2009-11-25T01:42:57Z</updated>
  <id>http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/fa24e47da7963190/52494dc1bab4fa95?show_docid=52494dc1bab4fa95</id>
  <link href="http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/fa24e47da7963190/52494dc1bab4fa95?show_docid=52494dc1bab4fa95"/>
  <title type="text">Re: The future of Java</title>
  <summary type="html" xml:space="preserve">
  On Sun, 22 Nov 2009 21:56:54 -0500, Arne Vajhøj &amp;lt;a...@vajhoej.dk&amp;gt; &lt;br&gt; wrote, quoted or indirectly quoted someone who said : &lt;br&gt; I have seen vendors wriggle out of these sorts of promise by creating &lt;br&gt; a new product and just letting the old one languish. The wording of &lt;br&gt; the GPL licence may make that difficult for Sun and Oracle. Does the
  </summary>
  </entry>
  <entry>
  <author>
  <name>Roedy Green</name>
  <email>see_webs...@mindprod.com.invalid</email>
  </author>
  <updated>2009-11-25T01:23:00Z</updated>
  <id>http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/fa24e47da7963190/635c94c9b1aef7bf?show_docid=635c94c9b1aef7bf</id>
  <link href="http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/fa24e47da7963190/635c94c9b1aef7bf?show_docid=635c94c9b1aef7bf"/>
  <title type="text">Re: The future of Java</title>
  <summary type="html" xml:space="preserve">
  On Sun, 22 Nov 2009 22:05:05 -0500, Arne Vajhøj &amp;lt;a...@vajhoej.dk&amp;gt; &lt;br&gt; wrote, quoted or indirectly quoted someone who said : &lt;br&gt; Under heavy loads a system can have can a variety of behaviours: &lt;br&gt; in increasing desirability &lt;br&gt; 1. the system crashes outright. &lt;br&gt; 2. the throughput drops precipitously. (e.g. virtual ram thrashing).
  </summary>
  </entry>
  <entry>
  <author>
  <name>markspace</name>
  <email>nos...@nowhere.com</email>
  </author>
  <updated>2009-11-25T01:04:32Z</updated>
  <id>http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/2eaab057b6f5b951/1e5192f3be1bc479?show_docid=1e5192f3be1bc479</id>
  <link href="http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/2eaab057b6f5b951/1e5192f3be1bc479?show_docid=1e5192f3be1bc479"/>
  <title type="text">Re: Hash table performance</title>
  <summary type="html" xml:space="preserve">
  I wasn&#39;t using bit masking and powers of two, I was using double the &lt;br&gt; previous table size then add 1, and integer modulo to limit the hash &lt;br&gt; index to the table size. I even started with a hash table size of 101. &lt;br&gt; I was using closed hashing however, which did not help. &lt;br&gt; I was *still* getting a huge clump of collisions right in the middle of
  </summary>
  </entry>
  <entry>
  <author>
  <name>Tom Anderson</name>
  <email>t...@urchin.earth.li</email>
  </author>
  <updated>2009-11-24T23:58:33Z</updated>
  <id>http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/2eaab057b6f5b951/898611ca1b6da06b?show_docid=898611ca1b6da06b</id>
  <link href="http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/2eaab057b6f5b951/898611ca1b6da06b?show_docid=898611ca1b6da06b"/>
  <title type="text">Re: Hash table performance</title>
  <summary type="html" xml:space="preserve">
  Ahaaa, yes, of course. Those bits in full: &lt;br&gt; 0.0 000000000000000000000000000000 000000000000000000000000000000 0000 &lt;br&gt; 1.0 001111111111000000000000000000 000000000000000000000000000000 0000 &lt;br&gt; 2.0 010000000000000000000000000000 000000000000000000000000000000 0000 &lt;br&gt; 3.0 010000000000100000000000000000 000000000000000000000000000000 0000
  </summary>
  </entry>
  <entry>
  <author>
  <name>Marcin Rzeźnicki</name>
  <email>marcin.rzezni...@gmail.com</email>
  </author>
  <updated>2009-11-24T23:55:58Z</updated>
  <id>http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/2eaab057b6f5b951/be0ce2b35ea9f42d?show_docid=be0ce2b35ea9f42d</id>
  <link href="http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/2eaab057b6f5b951/be0ce2b35ea9f42d?show_docid=be0ce2b35ea9f42d"/>
  <title type="text">Re: Hash table performance</title>
  <summary type="html" xml:space="preserve">
  I suppose that it is mature since they&#39;ve made it available and I also &lt;br&gt; suppose that they found out that benefits of EA were not that great &lt;br&gt; for many classes of programs when compared to longer JITting - but &lt;br&gt; that&#39;s just my thinking. &lt;br&gt; Semantically yes but in the case of synchronized method there is no &lt;br&gt; accompanying bytecode instruction, namely monitorenter/monitorexit
  </summary>
  </entry>
  <entry>
  <author>
  <name>Jon Harrop</name>
  <email>j...@ffconsultancy.com</email>
  </author>
  <updated>2009-11-25T00:57:55Z</updated>
  <id>http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/2eaab057b6f5b951/279ef81f96200395?show_docid=279ef81f96200395</id>
  <link href="http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/2eaab057b6f5b951/279ef81f96200395?show_docid=279ef81f96200395"/>
  <title type="text">Re: Hash table performance</title>
  <summary type="html" xml:space="preserve">
  No, it applies to all untagged value types including byte, int, long, float, &lt;br&gt; double and any user defined value types like complex numbers or vertex &lt;br&gt; data. &lt;br&gt; Interestingly, this reminds me of a lecture one of the JVM designers gave, &lt;br&gt; describing how they felt it was preferable to build a VM upon dynamic &lt;br&gt; language principles. The JVM&#39;s awful performance here is a direct
  </summary>
  </entry>
  <entry>
  <author>
  <name>Marcin Rzeźnicki</name>
  <email>marcin.rzezni...@gmail.com</email>
  </author>
  <updated>2009-11-24T23:18:07Z</updated>
  <id>http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/8e71efdb9bcd4ac6/c2ca288b13300d64?show_docid=c2ca288b13300d64</id>
  <link href="http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/8e71efdb9bcd4ac6/c2ca288b13300d64?show_docid=c2ca288b13300d64"/>
  <title type="text">Re: good porn site</title>
  <summary type="html" xml:space="preserve">
  I am not sure but in reality it might be hard to find a really good &lt;br&gt; one :-))) &lt;br&gt; Care to recommend? :-))))
  </summary>
  </entry>
  <entry>
  <author>
  <name>Thomas Pornin</name>
  <email>por...@bolet.org</email>
  </author>
  <updated>2009-11-24T23:14:54Z</updated>
  <id>http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/2eaab057b6f5b951/07be9bf9d93b7649?show_docid=07be9bf9d93b7649</id>
  <link href="http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/2eaab057b6f5b951/07be9bf9d93b7649?show_docid=07be9bf9d93b7649"/>
  <title type="text">Re: Hash table performance</title>
  <summary type="html" xml:space="preserve">
  According to Patricia Shanahan &amp;lt;p...@acm.org&amp;gt;: &lt;br&gt; Integer division tends to be slow on modern hardware. The Intel &lt;br&gt; optimization manual which happens to conveniently reside on my harddisk &lt;br&gt; states that latency for a simple &amp;quot;idiv&amp;quot; opcode is between 56 and 70 &lt;br&gt; clock cycles, while masking uses only a fraction of a clock cycle.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Patricia Shanahan</name>
  <email>p...@acm.org</email>
  </author>
  <updated>2009-11-24T22:58:31Z</updated>
  <id>http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/2eaab057b6f5b951/c1757704f4264171?show_docid=c1757704f4264171</id>
  <link href="http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/2eaab057b6f5b951/c1757704f4264171?show_docid=c1757704f4264171"/>
  <title type="text">Re: Hash table performance</title>
  <summary type="html" xml:space="preserve">
  Given current division speeds, does it really make sense to use a &lt;br&gt; power-of-two bucket count? &lt;br&gt; Many years ago, I had to design a hash table for use on a machine with &lt;br&gt; integer remainder *very* slow compared to masking. I found that I got &lt;br&gt; slightly more collisions with a power of two size than a prime size, but
  </summary>
  </entry>
  <entry>
  <author>
  <name>TEKKEN</name>
  <email>m.5ah...@gmail.com</email>
  </author>
  <updated>2009-11-24T22:07:56Z</updated>
  <id>http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/f2c47c5e9053c349/86acfbeb854ca1fd?show_docid=86acfbeb854ca1fd</id>
  <link href="http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/f2c47c5e9053c349/86acfbeb854ca1fd?show_docid=86acfbeb854ca1fd"/>
  <title type="text">Watch Hot Sexy Star Aishwarya Rai Nude Videos In All Angles At www.service4me.tk</title>
  <summary type="html" xml:space="preserve">
  Watch Hot Sexy Star Aishwarya Rai Nude Videos In All Angles At &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.service4me.tk&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; &amp;lt; Due to high sex content,I have hidden these videos inside an &lt;br&gt; image.In that website,click on the big vertical Image on right side of &lt;br&gt; website &amp;amp; watch the videos &amp;gt;
  </summary>
  </entry>
  <entry>
  <author>
  <name>markspace</name>
  <email>nos...@nowhere.com</email>
  </author>
  <updated>2009-11-24T22:06:54Z</updated>
  <id>http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/2eaab057b6f5b951/82147c4c6fa98523?show_docid=82147c4c6fa98523</id>
  <link href="http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/2eaab057b6f5b951/82147c4c6fa98523?show_docid=82147c4c6fa98523"/>
  <title type="text">Re: Hash table performance</title>
  <summary type="html" xml:space="preserve">
  Writing my own hash table implementation, I noticed that I was getting &lt;br&gt; terrible performance with a ton of collisions and everything was heaped &lt;br&gt; up in a tiny spot in the table. &lt;br&gt; Inspecting the hash in hexadecimal, I realized that Jon&#39;s data keys -- &lt;br&gt; the natural counting numbers 1, 2, 3, etc. -- are represented in a
  </summary>
  </entry>
  <entry>
  <author>
  <name>Martin Gregorie</name>
  <email>mar...@address-in-sig.invalid</email>
  </author>
  <updated>2009-11-24T22:00:43Z</updated>
  <id>http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/fa24e47da7963190/9957646b34012255?show_docid=9957646b34012255</id>
  <link href="http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/fa24e47da7963190/9957646b34012255?show_docid=9957646b34012255"/>
  <title type="text">Re: The future of Java</title>
  <summary type="html" xml:space="preserve">
  That&#39;s good to know. &lt;br&gt; However, for my immediate application, table locking is probably not a &lt;br&gt; problem since during normal processing DB updating is a single threaded &lt;br&gt; bulk load that can be done overnight and/or in a quiet time. The only &lt;br&gt; other accesses are read-only apart from occasional bouts of data
  </summary>
  </entry>
  <entry>
  <author>
  <name>Thomas Pornin</name>
  <email>por...@bolet.org</email>
  </author>
  <updated>2009-11-24T21:16:42Z</updated>
  <id>http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/886af76f12fd6420/1ed72cc4d4d657fd?show_docid=1ed72cc4d4d657fd</id>
  <link href="http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/886af76f12fd6420/1ed72cc4d4d657fd?show_docid=1ed72cc4d4d657fd"/>
  <title type="text">Re: Windows 7 and all my Java stuff.</title>
  <summary type="html" xml:space="preserve">
  According to Arved Sandstrom &amp;lt;dces...@hotmail.com&amp;gt;: &lt;br&gt; When I worry about RAM, it is mostly for a few routines where performance &lt;br&gt; happens to be critical, and there I worry about &amp;quot;fast RAM&amp;quot;. Fast RAM is &lt;br&gt; the RAM which is accessed without any extra delay. On a recent CPU this &lt;br&gt; means L1 cache. My relatively recent Intel CPU has a 32 kB L1 cache
  </summary>
  </entry>
  <entry>
  <author>
  <name>Arved Sandstrom</name>
  <email>dces...@hotmail.com</email>
  </author>
  <updated>2009-11-24T20:46:54Z</updated>
  <id>http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/8e71efdb9bcd4ac6/62648cc1627aad6f?show_docid=62648cc1627aad6f</id>
  <link href="http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/8e71efdb9bcd4ac6/62648cc1627aad6f?show_docid=62648cc1627aad6f"/>
  <title type="text">Re: good porn site</title>
  <summary type="html" xml:space="preserve">
  You have Internet access, and you can&#39;t find a good porn site? Is this &lt;br&gt; your first hour with a &#39;Net connection or what? &lt;br&gt; AHS
  </summary>
  </entry>
  <entry>
  <author>
  <name>Arved Sandstrom</name>
  <email>dces...@hotmail.com</email>
  </author>
  <updated>2009-11-24T20:44:28Z</updated>
  <id>http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/886af76f12fd6420/3ebdb7400277acb1?show_docid=3ebdb7400277acb1</id>
  <link href="http://groups.google.co.uk/group/comp.lang.java.programmer/browse_frm/thread/886af76f12fd6420/3ebdb7400277acb1?show_docid=3ebdb7400277acb1"/>
  <title type="text">Re: Windows 7 and all my Java stuff.</title>
  <summary type="html" xml:space="preserve">
  [ SNIP ] &lt;br&gt; I was being somewhat tongue in cheek about the memory thing. :-) I have &lt;br&gt; to agree, even with application bloat I spend a much smaller fraction of &lt;br&gt; my time these days worrying about memory than I did 20 or 30 years ago. &lt;br&gt; Well, to be accurate, I still worry about memory but now it&#39;s not RAM &lt;br&gt; I&#39;m thinking about.
  </summary>
  </entry>
</feed>
