User grayger - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T09:26:04Zhttp://stackoverflow.com/feeds/user/60039http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/837351/how-do-i-save-the-heap-dump-to-a-file-in-eclipse/838207#8382070Answer by grayger for How do I Save the Heap (Dump to a File) in Eclipse?grayger2009-05-08T04:15:19Z2009-05-08T04:15:19Z<p>You can monitor memory usages with JConsole. </p>
<p>The <a href="http://java.sun.com/j2se/1.5.0/docs/tooldocs/share/jstat.html" rel="nofollow">jstat</a> also will help.</p>
http://stackoverflow.com/questions/829953/how-can-i-get-around-this-classloader-hierarchy-problem/830015#8300152Answer by grayger for How can I get around this classloader hierarchy problem?grayger2009-05-06T14:55:43Z2009-05-06T14:55:43Z<p>Take a look at <a href="http://www.slf4j.org" rel="nofollow">SLF4J</a>. </p>
<p>Additionally, <a href="http://www.qos.ch/logging/classloader.jsp" rel="nofollow">http://www.qos.ch/logging/classloader.jsp </a> will help.</p>
http://stackoverflow.com/questions/829615/measuring-javascript-performance-in-ie/829949#8299491Answer by grayger for Measuring Javascript performance in IEgrayger2009-05-06T14:42:25Z2009-05-06T14:42:25Z<p>Take a look at <a href="http://developer.yahoo.com/yui/profiler/" rel="nofollow">YUI Profiler</a>.</p>
http://stackoverflow.com/questions/825928/application-area-of-lock-striping0Application area of lock-stripinggrayger2009-05-05T17:07:29Z2009-05-05T17:12:35Z
<p>The ConcurrentHashMap of JDK uses a lock-striping technique. It is a nice idea to minimize locking overhead. Are there any other libraries or tools that take advantage of it?
For example, does database engine use it? </p>
<p>If the technique is not so much useful in other areas, what is the limitation of it?</p>
http://stackoverflow.com/questions/824754/distribution-of-user-accounts-to-n-tables0Distribution of user accounts to N tables grayger2009-05-05T13:03:39Z2009-05-05T14:35:24Z
<p>There are millions of user accounts, and I want to distribute their data into N tables(user_1, user_2,..., user_N) of a database. User accounts are comprised of 3~8 characters.
So, I want a function that returns table suffix like </p>
<pre><code> int getTableSuffix(String userAccount);
</code></pre>
<p>The result is a uniform distribution from 1 to N. </p>
<p>Do you know any cheap hash algorithm for this job?</p>
http://stackoverflow.com/questions/816931/what-non-free-tools-are-popular-amongst-java-developers/817077#8170770Answer by grayger for What non-free tools are popular amongst Java developersgrayger2009-05-03T13:40:41Z2009-05-03T13:40:41Z<p>JUnit Max for continuous testing in Eclipse.</p>
http://stackoverflow.com/questions/803625/oauth-alternative0OAuth alternative?grayger2009-04-29T18:27:03Z2009-04-30T03:56:40Z
<p>Hi, I have been investigating OAuth to share resources in my site to other sites.
But, hole of OAuth specification was reported several days ago.
<a href="http://oauth.net/advisories/2009-1" rel="nofollow">http://oauth.net/advisories/2009-1</a></p>
<p>Many sites decided to stop OAuth until fixed version is released.</p>
<p>Currently, can we have any alternative to OAuth?
I want an open-standard and secure authorization protocol.</p>
http://stackoverflow.com/questions/802455/load-testing-tool-that-can-send-put-delete-methods0Load testing tool that can send PUT/DELETE methodsgrayger2009-04-29T13:52:00Z2009-04-29T17:27:05Z
<p>Hi, I am finding load testing tool that can send PUT/DELETE requests.
Neither ApacheBench nor JMeter supports these methods.</p>
<p>After several hours' googling, I found www.soapui.org that looks good. </p>
<p>Do you have any other recommendation? Command line tool like ApacheBench will be better for me.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/653469/enclosing-calls-to-debug-in-if-isdebugenabled-a-good-policy/653500#6535000Answer by grayger for Enclosing calls to debug() in if isDebugEnabled(): a good policy?grayger2009-03-17T09:22:06Z2009-03-17T09:22:06Z<p>If "model" is already known, just logging it is not so expensive.
But, if the "model" should be fetched just for logging as below, simplicity can be compromised. </p>
<pre><code>LOGGER.debug("model[" + proxy.getModel() + "]");
</code></pre>
http://stackoverflow.com/questions/645464/which-do-you-prefer-java-web-start-or-java-applets/649240#6492403Answer by grayger for Which do you prefer: Java Web Start, or Java Applets?grayger2009-03-16T04:10:58Z2009-03-16T04:10:58Z<p>From my experience, customers don't want their programs to be running inside a browser. But, from Java6 update 10, applets can be running outside of the browser in a separate process. This appealing feature might fill the gap between the applet and JWS.</p>
http://stackoverflow.com/questions/633299/anyone-know-of-a-java-util-map-implementation-optimized-for-low-memory-use/633364#6333641Answer by grayger for Anyone know of a java.util.Map implementation optimized for low memory use?grayger2009-03-11T04:45:30Z2009-03-11T04:45:30Z<p>Simply, I recommend to use one of HashMap, Hashtable and ConcurrentHashMap of JDK depending on synchronization or concurrency requirements.
If you decide to use them, setting initialCapacity and loadFactor appropriately in the constructor may help.</p>
<p>Google collections and apache commons collections provide more features: LRUMap, ReferenceMap, MultikeyMap and so on. But I don't think there are not for just small size.</p>
http://stackoverflow.com/questions/618844/how-to-properly-handle-error-logs/619023#6190231Answer by grayger for How to properly handle error logs?grayger2009-03-06T14:27:19Z2009-03-06T14:27:19Z<p>If multiple servers are running and each server leaves log messages on itself, it is really difficult to trace them. So,somebody or a tool should gather and sort them in time order.
It is a good way to have a central point where all messages are sent.</p>
http://stackoverflow.com/questions/614666/logging-java-web-applications/615491#6154910Answer by grayger for Logging Java web applications?grayger2009-03-05T16:19:09Z2009-03-06T00:56:04Z<p>I recommend to call log API (log4j) via slf4j. Even if you use log4j, web container or depending modules may use different log API such as Java.util.logging or Jakarta commons logging. Slf4j provides bridge modules that redirect them to slf4j API. As a result, all log messages are written by log4j in that case. </p>
http://stackoverflow.com/questions/615614/at-what-point-does-refactoring-become-not-worth-it/615764#615764-1Answer by grayger for At what point does refactoring become not worth it?grayger2009-03-05T17:31:13Z2009-03-05T17:31:13Z<p>No document, no original writer, no test case, and a bunch of remaining bugs.</p>
http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/595376#5953765Answer by grayger for Hidden features of Eclipsegrayger2009-02-27T16:07:18Z2009-02-27T16:07:18Z<p>Absolutely, Ctrl+Q to go to last edit location.
It is very useful just after being interrupted by phone, boss or others.</p>
http://stackoverflow.com/questions/383833/question-about-the-java-garbage-collector-nulls-and-memory-leaking/594233#5942333Answer by grayger for Question about the Java Garbage Collector, nulls and memory leaking.grayger2009-02-27T10:32:03Z2009-02-27T10:32:03Z<p>Yes, GC works in that case.
But elements between head and tail may survive and then enter old generation space and then
they will be collected during full GC.
As you know, full GC is expensive. As far as performance is concerned, nulling them is better.</p>
<p>You can see how clear() method of java.util.LinkedList is implemented.</p>
<pre><code>public void clear() {
Entry<E> e = header.next;
while (e != header) {
Entry<E> next = e.next;
e.next = e.previous = null;
e.element = null;
e = next;
}
header.next = header.previous = header;
size = 0;
modCount++;
}
</code></pre>
<p><a href="http://tech.puredanger.com/2009/02/11/linkedblockingqueue-garbagecollection/" rel="nofollow">http://tech.puredanger.com/2009/02/11/linkedblockingqueue-garbagecollection/</a> touches the issue.</p>
http://stackoverflow.com/questions/457822/what-are-the-things-java-got-right/586641#5866410Answer by grayger for What are the things Java got right? grayger2009-02-25T16:03:54Z2009-02-25T16:03:54Z<p>Good harmony with IDE tools such as Eclipse, NetBeans, or IntelliJ.</p>
http://stackoverflow.com/questions/434989/hashmap-intialization-parameters-load-initialcapacity/584465#5844650Answer by grayger for HashMap intialization parameters (load / initialcapacity)grayger2009-02-25T02:02:08Z2009-02-25T02:02:08Z<p>Referring to HashMap source code will help.</p>
<p>If the number of entries reaches threshold(capacity * load factor), rehashing is done automatically. That means too small load factor can incur frequent rehashing as entries grow.</p>
http://stackoverflow.com/questions/529757/are-there-any-famous-one-man-army-programmers/569840#5698401Answer by grayger for Are there any famous one-man-army programmers?grayger2009-02-20T14:58:16Z2009-02-20T14:58:16Z<p>Rod Johnson, creator of Spring framework</p>
http://stackoverflow.com/questions/469445/last-words-of-a-programmer/568961#5689612Answer by grayger for Last words of a ??? programmergrayger2009-02-20T09:56:44Z2009-02-20T09:56:44Z<p>Eclipse:</p>
<blockquote>
<pre><code> // TODO Auto-generated catch block
</code></pre>
</blockquote>
http://stackoverflow.com/questions/490420/favorite-clever-defensive-programming-best-practices/568350#5683500Answer by grayger for Favorite (Clever) Defensive Programming Best Practicesgrayger2009-02-20T05:05:39Z2009-02-20T05:18:52Z<p>JavaScript:</p>
<p>We should use "==" and "===" appropriately.</p>
<blockquote>
<p>== : type-converting equality comparison</p>
<p>=== : strict equality comparison</p>
</blockquote>
<p>For example, '1'==1 is true, but '1'===1 is false.</p>
<p>Many people use "==" instead of "===" unconsciously.</p>
http://stackoverflow.com/questions/528664/simple-way-to-do-xml-in-java/528745#52874510Answer by grayger for Simple way to do Xml in Javagrayger2009-02-09T16:00:27Z2009-02-09T16:00:27Z<p>I recommend <a href="http://www.xom.nu/" rel="nofollow">XOM</a>. Its API is clear and intuitive.</p>
http://stackoverflow.com/questions/130095/most-useful-free-java-libraries/492690#492690-2Answer by grayger for Most useful free Java libraries?grayger2009-01-29T17:55:12Z2009-01-29T17:55:12Z<p>Here are my choices.</p>
<ol>
<li>JUnit </li>
<li>Log4J</li>
<li>Apache Commons Configuration</li>
<li>FindBugs (it is a tool rather than a library)</li>
</ol>
http://stackoverflow.com/questions/15496/hidden-features-of-java/492663#4926630Answer by grayger for Hidden Features of Javagrayger2009-01-29T17:44:43Z2009-01-29T17:44:43Z<p>I enjoyed</p>
<ol>
<li><a href="http://java.sun.com/javase/6/docs/technotes/guides/javadoc/" rel="nofollow">javadoc</a>'s taglet and doclet that enable us to customize javadoc output.</li>
<li><a href="http://java.sun.com/javase/6/docs/technotes/tools/" rel="nofollow">JDK tools</a>: jstat, jstack etc.</li>
</ol>
http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/490290#4902902Answer by grayger for What is the most frequent concurrency problem you've encountered in Java?grayger2009-01-29T02:23:48Z2009-01-29T02:23:48Z<p>Starting a thread within the constructor of a class is problematic. If the class is extended, the thread can be started before subclass' constructor is executed. </p>
http://stackoverflow.com/questions/858250/java-memory-explained-sun-jvm/858650#858650Comment by grayger on Java Memory explained (SUN JVM)grayger2009-05-13T16:20:48Z2009-05-13T16:20:48Z+1 for good collectionshttp://stackoverflow.com/questions/824754/distribution-of-user-accounts-to-n-tablesComment by grayger on Distribution of user accounts to N tables grayger2009-05-05T15:57:46Z2009-05-05T15:57:46Z@lassevk: I worry that a big table may suffer from table locking under situations when using MyISAM of MySQL. http://stackoverflow.com/questions/803625/oauth-alternative/803631#803631Comment by grayger on OAuth alternative?grayger2009-04-29T18:32:31Z2009-04-29T18:32:31ZOpenId is not for authorization but for authentication. http://stackoverflow.com/questions/617916/are-certifications-useful-for-java-programmers-who-wish-to-advance-their-career/618834#618834Comment by grayger on Are certifications useful for Java programmers who wish to advance their career?grayger2009-03-06T13:53:45Z2009-03-06T13:53:45ZIs (3) really valid? I am surprised!http://stackoverflow.com/questions/448320/how-do-i-append-a-newline-character-for-all-lines-except-the-last-one/448347#448347Comment by grayger on How do I append a newline character for all lines except the last one?grayger2009-03-06T03:49:04Z2009-03-06T03:49:04ZWhich operation is cheaper among assignment(Joel's) and condition(Jon's) that are done in every iteration?http://stackoverflow.com/questions/449549/how-to-leverage-clearcases-features/449619#449619Comment by grayger on How to Leverage Clearcase's featuresgrayger2009-03-04T14:36:36Z2009-03-04T14:36:36Z@wcoenen: configspec provides much more than SVN's switch command. It enables to have different versions for each element. http://stackoverflow.com/questions/442564/avoid-synchronizedthis-in-java/442638#442638Comment by grayger on Avoid synchronized(this) in Java?grayger2009-03-03T04:53:06Z2009-03-03T04:53:06Z+1 Your example provides fine grained locks.http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282618#282618Comment by grayger on What are five things you hate about your favorite language?grayger2009-02-25T15:40:21Z2009-02-25T15:40:21ZI agree with #3. http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/314589#314589Comment by grayger on What are five things you hate about your favorite language?grayger2009-02-25T15:36:30Z2009-02-25T15:36:30ZDo you have any idea to make Java's NPE contain information about what is null?http://stackoverflow.com/questions/377593/javafx-is-now-out-are-applets-and-java-desktop-officially-dead-dying/382072#382072Comment by grayger on JavaFX is now out: Are Applets and Java Desktop officially dead/dying?grayger2009-02-23T17:19:04Z2009-02-23T17:19:04ZYou are right. Applet can't die as long as JavaFX is alive. http://stackoverflow.com/questions/529757/are-there-any-famous-one-man-army-programmers/537954#537954Comment by grayger on Are there any famous one-man-army programmers?grayger2009-02-20T10:03:34Z2009-02-20T10:03:34Z+1 I like his works.http://stackoverflow.com/questions/469445/last-words-of-a-programmer/469654#469654Comment by grayger on Last words of a ??? programmergrayger2009-02-20T09:45:00Z2009-02-20T09:45:00ZHahaha! Tomorrow he will say "80% done".