User Alex Miller - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T10:39:31Zhttp://stackoverflow.com/feeds/user/7671http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1781091/java-how-to-load-class-stored-as-byte-into-the-jvm/1781151#17811513Answer by Alex Miller for Java: How to load Class stored as byte[] into the JVM?Alex Miller2009-11-23T04:49:29Z2009-11-23T04:49:29Z<p>I'm actually using something like this right now in a test to give a set of Class definitions as byte[] to a ClassLoader:</p>
<pre><code> public static class ByteClassLoader extends URLClassLoader {
private final Map<String, byte[]> extraClassDefs;
public ByteClassLoader(URL[] urls, ClassLoader parent, Map<String, byte[]> extraClassDefs) {
super(urls, parent);
this.extraClassDefs = new HashMap<String, byte[]>(extraClassDefs);
}
@Override
protected Class<?> findClass(final String name) throws ClassNotFoundException {
byte[] classBytes = this.extraClassDefs.remove(name);
if (classBytes != null) {
return defineClass(name, classBytes, 0, classBytes.length);
}
return super.findClass(name);
}
}
</code></pre>
http://stackoverflow.com/questions/1746336/should-you-provide-dependent-libraries-in-client-jar/1746524#17465241Answer by Alex Miller for Should you provide dependent libraries in client jar?Alex Miller2009-11-17T04:10:41Z2009-11-17T04:10:41Z<p>The pros of bundling into a single jar are obviously:</p>
<ul>
<li>simplicity for the client</li>
</ul>
<p>The cons of bundling are:</p>
<ul>
<li>inability to update the versions of the dependent libraries </li>
<li>hiding necessary libraries can actually lead to potential conflicts in the client with those extra libraries</li>
<li>complexity for you in the build process (but ways to do this pretty easily in Ant/Maven)</li>
<li>some libraries with manifests cannot just be unjared and rejared - you need to actually merge the manifest information. There is Ant and Maven support for this though.</li>
</ul>
<p>Another option is to use a single main jar (your code) with the class-path manifest attribute set to suck in the other jars. Personally I don't like this as it's really easy to miss these semi-hidden dependencies.</p>
<p>In the end, if you're talking just one or two jars, I'd leave them split out. If you're talking 10 or 15, you might want to consider bundling.</p>
http://stackoverflow.com/questions/1744365/parse-log-file-using-java-and-plot-graph/1744683#17446830Answer by Alex Miller for parse log file - using java and plot graphAlex Miller2009-11-16T20:34:41Z2009-11-16T20:34:41Z<p>In Java, I would look at <a href="http://www.jfree.org/jfreechart/" rel="nofollow">JFreeChart</a> for drawing graphs once you've parsed the log.</p>
http://stackoverflow.com/questions/1740147/alternatives-to-quartz-for-job-scheduling/1740204#17402042Answer by Alex Miller for Alternatives to Quartz for job schedulingAlex Miller2009-11-16T05:18:49Z2009-11-16T05:18:49Z<p>I did some looking a while back and was hard-pressed to find any open source Java-based job scheduler that seemed to have even a fraction of the reputation and usage of Quartz. I would be really curious to hear why Quartz isn't sufficient.</p>
http://stackoverflow.com/questions/1739772/how-do-i-diagnose-unhandled-exceptions-in-java/1739980#17399801Answer by Alex Miller for How do I diagnose "Unhandled Exceptions" in Java?Alex Miller2009-11-16T04:01:54Z2009-11-16T04:01:54Z<p>Sounds like you've got an unchecked RuntimeException happening somewhere. You could easily try it in your main() method with try { } catch(Throwable t) { t.printStackTrace(); }</p>
<p>Or if you remotely debug it with an IDE like Eclipse, you can set it up to trigger the debugger on a Java exception breakpoint with "Suspend on uncaught exceptions". Some docs <a href="http://www.google.com/url?sa=t&source=web&ct=res&cd=2&ved=0CAsQFjAB&url=http%3A%2F%2Fhelp.eclipse.org%2Fhelp32%2Ftopic%2Forg.eclipse.jdt.doc.user%2Freference%2Fviews%2Fbreakpoints%2Fref-addexception%5Fviewaction.htm&ei=c84AS-nkKo-4MNqRmZoL&usg=AFQjCNEsDKVrle8vAcjmdiuhNC89Gm2sOQ&sig2=IgkiejfrP6nAWNGq53NluA" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1733135/object-graph-persistence-question/1733256#17332562Answer by Alex Miller for Object Graph / Persistence QuestionAlex Miller2009-11-14T04:23:29Z2009-11-14T04:23:29Z<p>I think it's perfectly valid to just build up your session state in the HTTPSession and commit at the end. If you need failover in this scenario, you can always use <a href="http://www.terracotta.org/web/display/orgsite/Sessions+Tutorial" rel="nofollow">Terracotta clustered sessions</a>, which will store your HTTPSession state in the Terracotta server (with varying levels of persistence). The server with the session could then die and Terracotta could resurrect it on another node.</p>
<p>You might check out <a href="http://www.springsource.org/webflow" rel="nofollow">Spring Webflow</a> too - it deals with this sort of scenario in flow state (which is stored in the session too).</p>
http://stackoverflow.com/questions/1733073/grokking-timsort/1733137#17331373Answer by Alex Miller for Grokking TimsortAlex Miller2009-11-14T03:31:07Z2009-11-14T03:53:09Z<p>This change went through the <a href="http://mail.openjdk.java.net/pipermail/core-libs-dev/" rel="nofollow">core-libs mailing list</a> when it went in so there is some discussion and useful links there. Here's the <a href="http://cr.openjdk.java.net/~martin/webrevs/openjdk7/timsort/" rel="nofollow">web rev</a> with code review changes and also the <a href="http://cr.openjdk.java.net/~martin/webrevs/openjdk7/timsort/timsort.patch" rel="nofollow">original patch</a>.</p>
<p>The comments in the code say:</p>
<blockquote>
<p>Implementation note: This implementation is a stable, adaptive,<br>
iterative mergesort that requires far fewer than n lg(n) comparisons<br>
when the input array is partially sorted, while offering the<br>
performance of a traditional mergesort when the input array is<br>
randomly ordered. If the input array is nearly sorted, the<br>
implementation requires approximately n comparisons.<br>
Temporary storage requirements vary from a small constant for nearly sorted<br>
input arrays to n/2 object references for randomly ordered input<br>
arrays. </p>
<p>The implementation takes equal advantage of ascending and<br>
descending order in its input array, and can take advantage of<br>
ascending and descending order in different parts of the the same<br>
input array. It is well-suited to merging two or more sorted arrays:<br>
simply concatenate the arrays and sort the resulting array.<br>
The implementation was adapted from Tim Peters's list sort for Python<br>
<a href="http://svn.python.org/projects/python/trunk/Objects/listsort.txt" rel="nofollow">TimSort</a>. It uses techiques from Peter McIlroy's "Optimistic<br>
Sorting and Information Theoretic Complexity", in Proceedings of the<br>
Fourth Annual ACM-SIAM Symposium on Discrete Algorithms, pp 467-474,<br>
January 1993. </p>
</blockquote>
<p>Buried in there is the <a href="http://svn.python.org/projects/python/trunk/Objects/listsort.txt" rel="nofollow">very useful link to the Python implementation details</a>, and I think that's a great place to start, followed by the code. To be incredibly high level about it, timsort improves performance by noticing runs of sorted data and taking advantage of that structure during the sort.</p>
http://stackoverflow.com/questions/1733049/p2p-or-distributed-system-implementation/1733182#17331820Answer by Alex Miller for P2P or Distributed System implementationAlex Miller2009-11-14T03:50:29Z2009-11-14T03:50:29Z<p>It would probably be a good idea to do some research on consistent hashing schemes. A nice starting point:</p>
<ul>
<li><a href="http://www.lexemetech.com/2007/11/consistent-hashing.html" rel="nofollow">http://www.lexemetech.com/2007/11/consistent-hashing.html</a></li>
</ul>
<p>I'm sure if you do some basic googling on "design peer to peer" type stuff you'll find lots of things to read. You might also look at some design docs for popular peer to peer apps like Gnutella, BitTorrent, etc. </p>
http://stackoverflow.com/questions/1709709/is-there-any-reason-to-avoid-the-sentinel-pattern-in-java/1709974#17099744Answer by Alex Miller for Is there any reason to avoid the sentinel pattern in Java?Alex Miller2009-11-10T18:04:53Z2009-11-10T18:04:53Z<p>I think they're both ok but the Iterator is more idiomatic in Java (particularly if you actually have an Iterable that you can use the for-each loop on instead). </p>
<p>The one place you do see the Sentinel version a lot in Java is exactly the case you've written in I/O code. </p>
http://stackoverflow.com/questions/1432180/is-there-a-way-to-get-which-classes-a-classloader-has-loaded/1705215#17052152Answer by Alex Miller for Is there a way to get which classes a ClassLoader has loaded?Alex Miller2009-11-10T02:02:12Z2009-11-10T07:07:20Z<p>You can create your own Classloader and use that to load during the unit test. Have your own custom Classloader print out what it's doing. </p>
<p>Or if you just want to know which classes are loaded, do:</p>
<pre><code>java -verbose:class
</code></pre>
http://stackoverflow.com/questions/1486895/distributed-caching/1705287#17052872Answer by Alex Miller for Distributed CachingAlex Miller2009-11-10T02:26:56Z2009-11-10T02:26:56Z<p>Terracotta recently acquired Ehcache and has <a href="http://bit.ly/LhshK" rel="nofollow">released a tight integration of the Ehcache API with the Terracotta clustered store</a> in a simple package and only requires a few extra lines of Ehcache configuration to go from single node to clustered, although you also have to run the Terracotta server process. </p>
<p>Ehcache with the Terracotta ES edition is open source and free to use. Commercial licenses are available if you want support, more scaling, indemnification, patch support, etc.</p>
<p>Terracotta does use a central server <strong>array</strong>, not a single central server, so there is no single point of failure! You can set up as many hot backup servers as you want and these backup servers can be configured to take over when the active server goes down. With Terracotta FX (commercial product), you can also use multiple active servers.</p>
http://stackoverflow.com/questions/1705151/detect-whether-java-class-is-loadable/1705202#17052026Answer by Alex Miller for Detect whether Java class is loadableAlex Miller2009-11-10T01:56:29Z2009-11-10T01:56:29Z<p>One common way to check for class existence is to just do a Class.forName("my.Class"). You can wrap that with a try/catch that catches ClassNotFoundException and decide what to do. If you want, you could do that in a wrapper class that has a main(). You could try to load the class and if it succeeds, then call main() on the loaded class and if not, do something else. </p>
<pre><code>public static void main(String arg[]) {
try {
Class.forName("my.OtherMain");
// worked, call it
OtherMain.main();
} catch(ClassNotFoundException e) {
// fallback to some other behavior
doOtherThing();
}
}
</code></pre>
http://stackoverflow.com/questions/1704456/why-do-sql-insert-and-update-statements-have-different-syntaxes/1704496#17044965Answer by Alex Miller for Why do SQL INSERT and UPDATE Statements have Different Syntaxes?Alex Miller2009-11-09T22:48:46Z2009-11-09T22:48:46Z<p>They're serving different grammatical functions. In an update you are specifying a filter that chooses a set of rows to which you will apply an update. And of course that syntax is shared with a SELECT query for the same purpose. </p>
<p>In an INSERT you are not choosing any rows, you are generating a new row which requires specifying a set of values. </p>
<p>In an UPDATE, the LHS=RHS stuff is specifying an expression which yields true or false (or maybe null :) and in an INSERT, the VALUES clause is about assignment of value. So while they are superficially similar, they are semantically quite different, imho. Although I have written a SQL parser, so that may influence my views. :) </p>
http://stackoverflow.com/questions/1643428/how-to-use-readwritelock/1703101#17031011Answer by Alex Miller for How to use ReadWriteLock ? Alex Miller2009-11-09T19:13:05Z2009-11-09T19:13:05Z<p>I like the volatile Map solution from KLE a lot and would go with that. Another idea that someone might find interesting is to use the map equivalent of a CopyOnWriteArrayList, basically a CopyOnWriteMap. We built one of these internally and it is non-trivial but you might be able to find a COWMap out in the wild:</p>
<p><a href="http://old.nabble.com/CopyOnWriteMap-implementation-td13018855.html" rel="nofollow">http://old.nabble.com/CopyOnWriteMap-implementation-td13018855.html</a></p>
http://stackoverflow.com/questions/1091251/ehcache-disable/1689942#16899421Answer by Alex Miller for EHCache DisableAlex Miller2009-11-06T19:50:33Z2009-11-06T19:50:33Z<p>There is a system property you can use for this:</p>
<pre><code>net.sf.ehcache.disabled=true
</code></pre>
http://stackoverflow.com/questions/1671692/ehcache-error-on-looking-up-by-cache-key/1689882#16898820Answer by Alex Miller for EHCache error on looking up by cache keyAlex Miller2009-11-06T19:41:52Z2009-11-06T19:41:52Z<p>Given the stack trace, it seems that the calling thread is seeing a Cache with a null MemoryStore (which shouldn't be possible). I have a sneaking suspicion that this might be a memory visibility issue in either the CacheManager creation code (double-checked locking) or the Cache itself. We've tightened up a lot of those field visibility issues for Ehcache 1.7.1 (not out yet but in a few weeks). </p>
<p>That makes it hard to give a definite fix but one crappy idea would be to add some spring initialization that guaranteed early during startup that only one thread constructed the CacheManager. If that made the problem go away, it would lend some credence to the above theory.</p>
http://stackoverflow.com/questions/566264/ehcache-hibernate-and-rmi-replication-with-large-number-of-entities/1689813#16898130Answer by Alex Miller for Ehcache / Hibernate and RMI replication with large number of entitiesAlex Miller2009-11-06T19:32:08Z2009-11-06T19:32:08Z<p>By the way, the 1500 byte limit has been addressed for the Ehcache 1.7.1 release of ehcache-core. See <a href="https://jira.terracotta.org/jira/browse/EHC-424" rel="nofollow">EHC-424</a>.</p>
http://stackoverflow.com/questions/1416730/how-to-sort-a-view-using-drupal-fivestar-average-ratings1How to sort a view using Drupal Fivestar average ratings?Alex Miller2009-09-13T02:52:06Z2009-09-13T04:41:37Z
<p>I am using Drupal 6.13, Views 6.x-2.6, Voting API 6.x-2.3, Fivestar 6.x-1.18.</p>
<p>I have a content type with field of type Fivestar Rating. I have a view where my intention is to list all of the nodes with this content type sorted in descending order by the overall average rating. The view is working in that it is showing the correct information (the user vote with ability to vote and the overall average vote). But I can't for the life of me get it to sort properly.</p>
<p>In the view, I have a relationship with "Node: Vote results", Value type = "Percent", Vote tag = "Normal", Aggregation function: "Average". </p>
<p>I've tried a bunch of things but what I expect to work is to add a "Sort criteria" with "(Vote results) Vote results: Value" and descending. When I do that if I look at the sql query and I see "ORDER BY node_title ASC" which is obviously not right. I would expect to see "ORDER BY votingapi_cache_node_percent_vote_average_value DESC". Any pointers would be most appreciated. </p>
<p>Query here:</p>
<pre><code>SELECT node.nid AS nid,
node.title AS node_title,
profile_values_profile_full_name.value AS profile_values_profile_full_name_value,
users.uid AS users_uid,
votingapi_vote_node_percent_vote_curuser.value AS votingapi_vote_node_percent_vote_curuser_value,
votingapi_cache_node_percent_vote_average.value AS votingapi_cache_node_percent_vote_average_value
FROM node node
LEFT JOIN votingapi_cache votingapi_cache_node_percent_vote_average ON node.nid = votingapi_cache_node_percent_vote_average.content_id AND (votingapi_cache_node_percent_vote_average.content_type = 'node' AND votingapi_cache_node_percent_vote_average.value_type = 'percent' AND votingapi_cache_node_percent_vote_average.tag = 'vote' AND votingapi_cache_node_percent_vote_average.function = 'average')
LEFT JOIN votingapi_vote votingapi_vote_node_percent_vote_curuser ON node.nid = votingapi_vote_node_percent_vote_curuser.content_id AND (votingapi_vote_node_percent_vote_curuser.content_type = 'node' AND votingapi_vote_node_percent_vote_curuser.value_type = 'percent' AND votingapi_vote_node_percent_vote_curuser.tag = 'vote' AND votingapi_vote_node_percent_vote_curuser.uid = '***CURRENT_USER***')
LEFT JOIN node_revisions node_revisions ON node.vid = node_revisions.vid
LEFT JOIN users users_node_revisions ON node_revisions.uid = users_node_revisions.uid
INNER JOIN users users ON node.uid = users.uid
LEFT JOIN profile_values profile_values_profile_full_name ON users.uid = profile_values_profile_full_name.uid AND profile_values_profile_full_name.fid = '5'
WHERE (node.type in ('passion_talk')) AND (node.status <> 0)
ORDER BY node_title ASC
</code></pre>
http://stackoverflow.com/questions/1416730/how-to-sort-a-view-using-drupal-fivestar-average-ratings/1416865#14168651Answer by Alex Miller for How to sort a view using Drupal Fivestar average ratings?Alex Miller2009-09-13T04:41:37Z2009-09-13T04:41:37Z<p>Ah, I figured it out. I was using Table style and there was a default sort set up on the node title that caused all sort criteria to be ignored. </p>
http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java32What is the most frequent concurrency problem you've encountered in Java?Alex Miller2009-01-20T15:58:38Z2009-09-11T18:06:20Z
<p>This is a poll of sorts about common concurrency problems in Java. An example might be the classic deadlock or race condition or perhaps EDT threading bugs in Swing. I'm interested both in a breadth of possible issues but also in what issues are most common. So, please leave one specific answer of a Java concurrency bug per comment and vote up if you see one you've encountered. Thanks!</p>
http://stackoverflow.com/questions/362770/should-an-interface-that-is-inherited-from-base-class-be-implemented-explicitly-i/364813#3648134Answer by Alex Miller for Should an interface that is inherited from base-class be implemented explicitly in subclass?Alex Miller2008-12-13T04:07:09Z2009-08-27T13:56:33Z<p>I asked <a href="http://tech.puredanger.com/2007/03/30/java-inheritance-question/" rel="nofollow">this same question long ago on my blog</a>. There is a long discussion there as well if you're interested in seeing some other people's thoughts. It's interesting to note that both strategies are taken within the JDK. </p>
<p>I ultimately decided that a hard rule on this didn't make sense - it's better to use best judgement as to what I wanted to communicate. </p>
http://stackoverflow.com/questions/169453/bad-gateway-502-error-with-apache-modproxy-and-tomcat4Bad Gateway 502 error with Apache mod_proxy and TomcatAlex Miller2008-10-04T00:51:54Z2009-08-17T12:23:42Z
<p>We're running a web app on Tomcat 6 and Apache mod_proxy 2.2.3. Seeing a lot of 502 errors like this:</p>
<blockquote>
<p>Bad Gateway!
The proxy server received an invalid response from an upstream server.</p>
<p>The proxy server could not handle the request GET /the/page.do.</p>
<p>Reason: Error reading from remote server</p>
<p>If you think this is a server error, please contact the webmaster.</p>
<p>Error 502 </p>
</blockquote>
<p>Tomcat has plenty of threads, so it's not thread-constrained. We're pushing 2400 users via JMeter against the app. All the boxes are sitting inside our firewall on a fast unloaded network, so there shouldn't be any network problems. </p>
<p>Anyone have any suggestions for things to look at or try? We're heading to tcpdump next.</p>
<p>UPDATE 10/21/08: Still haven't figured this out. Seeing only a very small number of these under load. The answers below haven't provided any magical answers...yet. :)</p>
http://stackoverflow.com/questions/344380/why-is-january-month-0-in-java-calendar/344857#3448575Answer by Alex Miller for Why is January month 0 in Java Calendar ?Alex Miller2008-12-05T19:25:22Z2009-08-13T04:25:54Z<p>In <a href="http://tech.puredanger.com/java7" rel="nofollow">Java 7</a>, we should have a new Date/Time API <a href="http://tech.puredanger.com/java7#jsr310" rel="nofollow">JSR 310</a> that is more sane. The spec lead is the same as the primary author of JodaTime and they share many similar concepts and patterns.</p>
<p>UPDATE: Sadly, it looks like JSR 310 will not make it into Java 7.</p>
http://stackoverflow.com/questions/1158980/where-is-java-source-code-for-various-com-sun-packages-on-leopard/1159175#11591752Answer by Alex Miller for Where is Java source code for various com.sun.* packages on Leopard?Alex Miller2009-07-21T13:28:56Z2009-07-21T13:40:49Z<p>The Nimbus classes are here in my 1.6 Mac installation:</p>
<p>/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Classes/classes.jar</p>
<p>and I would jad them if you need the source. I use JadClipse to view jad'ed source inside Eclipse. It's not perfect of course, but serves in a pinch.</p>
<p>You can also get JDK 1.6 source here:</p>
<ul>
<li><a href="http://download.java.net/jdk6/source/" rel="nofollow">http://download.java.net/jdk6/source/</a></li>
</ul>
<p>If you extract it, you can find the Nimbus source down under Work/j2se/src/share/classes/com/sun/java/swing/plaf/nimbus</p>
<p>So could theoretically hook that up to the classes.jar and maybe get something to work too.</p>
http://stackoverflow.com/questions/1071180/is-the-primary-key-automatically-indexed-in-mysql3Is the primary key automatically indexed in MySQL?Alex Miller2009-07-01T20:21:26Z2009-07-14T02:00:41Z
<p>Do you need to explicitly create this or is it implicit when define the primary key? Is the answer the same for MyISAM and InnoDB?</p>
http://stackoverflow.com/questions/197474/hibernate-criteria-vs-hql/1108158#11081581Answer by Alex Miller for Hibernate: Criteria vs. HQLAlex Miller2009-07-10T07:21:51Z2009-07-10T07:21:51Z<p>Criteria are the only way to specify natural key lookups that take advantage of the special optimization in the second level query cache. HQL does not have any way to specify the necessary hint. </p>
<p>You can find some more info here:</p>
<ul>
<li><a href="http://tech.puredanger.com/2009/07/10/hibernate-query-cache/" rel="nofollow">http://tech.puredanger.com/2009/07/10/hibernate-query-cache/</a></li>
</ul>
http://stackoverflow.com/questions/890041/why-does-query-caching-with-hibernate-make-the-query-ten-times-slower/1108152#11081521Answer by Alex Miller for Why does query caching with Hibernate make the query ten times slower?Alex Miller2009-07-10T07:20:28Z2009-07-10T07:20:28Z<p>You might find some useful info on my blog about the query cache here:</p>
<ul>
<li><a href="http://tech.puredanger.com/2009/07/10/hibernate-query-cache/" rel="nofollow">http://tech.puredanger.com/2009/07/10/hibernate-query-cache/</a></li>
</ul>
http://stackoverflow.com/questions/161427/automatic-query-cache-invalidation/1108148#11081481Answer by Alex Miller for automatic query cache invalidationAlex Miller2009-07-10T07:19:18Z2009-07-10T07:19:18Z<p>You might find my blog on query cache workings to be helpful in understanding what the query cache does and why it might not work the way you think it works:</p>
<ul>
<li><a href="http://tech.puredanger.com/2009/07/10/hibernate-query-cache/" rel="nofollow">http://tech.puredanger.com/2009/07/10/hibernate-query-cache/</a></li>
</ul>
http://stackoverflow.com/questions/1070646/multi-java-processes-by-jvm/1071113#10711132Answer by Alex Miller for Multi java processes by jvm ?Alex Miller2009-07-01T20:11:12Z2009-07-01T20:11:12Z<p>Reminds me of <a href="http://jcp.org/en/jsr/detail?id=121" rel="nofollow">JSR 121 Isolates</a>. That spec completed but I'm not sure what, if anything, ever happened implementation-wise with this stuff. There is a <a href="http://www.infoq.com/news/jsr-284-early-draft" rel="nofollow">followup JSR 284</a> as well.</p>
http://stackoverflow.com/questions/1070703/how-can-i-require-a-generic-parameter-to-be-an-enum-that-implements-an-interface/1071089#10710891Answer by Alex Miller for How can I require a generic parameter to be an enum that implements an interface?Alex Miller2009-07-01T20:06:53Z2009-07-01T20:06:53Z<p>The JSR 203 (new new IO) stuff for JDK 7 is making a lot of use of enums that implement interfaces (for example: <a href="http://openjdk.java.net/projects/nio/javadoc/java/nio/file/FileVisitOption.html" rel="nofollow">http://openjdk.java.net/projects/nio/javadoc/java/nio/file/FileVisitOption.html</a>) to allow them some wiggle room in the future for future additional sets of enum options. So that is a feasible approach and obviously one that was chosen after a lot of thought in one large Sun project.</p>
http://stackoverflow.com/questions/1781091/java-how-to-load-class-stored-as-byte-into-the-jvm/1781151#1781151Comment by Alex Miller on Java: How to load Class stored as byte[] into the JVM?Alex Miller2009-11-23T15:42:33Z2009-11-23T15:42:33Z@ShaChris23 - sure, why wouldn't it?
@Stephen C - that seems like a limited view of what Java classloaders can do. Why do you say probably not?http://stackoverflow.com/questions/1772192/is-listliststring-an-instance-of-collectioncollectiontComment by Alex Miller on Is List<List<String>> an instance of Collection<Collection<T>>?Alex Miller2009-11-20T18:02:18Z2009-11-20T18:02:18ZTotally unrelated to your question, I would be very very likely to use the word "flatten" in the method name for a method that did this.http://stackoverflow.com/questions/1738963/is-hashmap-in-java-collision-safe/1738968#1738968Comment by Alex Miller on Is HashMap in Java collision safeAlex Miller2009-11-15T22:01:53Z2009-11-15T22:01:53ZIn particular on the second, the value would only be overwritten if a) the hashCode() is the same and b) the equals() evaluates to true.http://stackoverflow.com/questions/1733135/object-graph-persistence-question/1733256#1733256Comment by Alex Miller on Object Graph / Persistence QuestionAlex Miller2009-11-14T13:46:56Z2009-11-14T13:46:56ZI believe in WebFlow, you can define state that has either page or flow scope. I think I would do what makes sense for your app.http://stackoverflow.com/questions/1709709/is-there-any-reason-to-avoid-the-sentinel-pattern-in-java/1709776#1709776Comment by Alex Miller on Is there any reason to avoid the sentinel pattern in Java?Alex Miller2009-11-10T18:07:15Z2009-11-10T18:07:15ZI agree with this principle and recommend following it. The dirty secret is that the exception throw version is insanely fast, esp if you used a cached exception singleton. But I wouldn't do that unless I needed insane speed and I could prove it was faster. I mention it here merely because it's interesting.http://stackoverflow.com/questions/1486895/distributed-cachingComment by Alex Miller on Distributed CachingAlex Miller2009-11-10T02:31:08Z2009-11-10T02:31:08ZTerracotta does not have a SPOF - you can use as many hot backups as you want that take over when an active server dies. With Terracotta FX, you can even have multiple actives for greater scale.http://stackoverflow.com/questions/1689127/frequently-used-metadata-hashmap/1689339#1689339Comment by Alex Miller on Frequently Used metadata HashmapAlex Miller2009-11-09T19:05:32Z2009-11-09T19:05:32Z0.75*capacity is probably not what you mean here. Assuming you actually mean capacity/0.75 ?
Also getCapacity is missing a parens and I would prefer ref'ing m_capacity to LRUCache.this.cacheSize in removeEldestEntry(). http://stackoverflow.com/questions/943888/how-to-config-querycache-in-ehcache-xml/943910#943910Comment by Alex Miller on How to config QueryCache in ehcache.xmlAlex Miller2009-11-06T19:36:13Z2009-11-06T19:36:13ZMake sure that you don't set up the UpdateTimestampsCache to expire elements, or at least not to expire them faster than your query cache. This will cause query results to be invalidated unnecessarily.http://stackoverflow.com/questions/566264/ehcache-hibernate-and-rmi-replication-with-large-number-of-entities/897026#897026Comment by Alex Miller on Ehcache / Hibernate and RMI replication with large number of entitiesAlex Miller2009-11-06T19:34:19Z2009-11-06T19:34:19ZThe 1500 limit is addressed with <a href="https://jira.terracotta.org/jira/browse/EHC-424" rel="nofollow">jira.terracotta.org/jira/browse/EHC-424</a> for upcoming Ehcache 1.7.1.http://stackoverflow.com/questions/566264/ehcache-hibernate-and-rmi-replication-with-large-number-of-entities/814394#814394Comment by Alex Miller on Ehcache / Hibernate and RMI replication with large number of entitiesAlex Miller2009-11-06T19:33:22Z2009-11-06T19:33:22ZIf you just set up a defaultcache, then that will be cloned to create each necessary entity cache. AFAIK, you will NOT get "one big cache".http://stackoverflow.com/questions/440036/re-creating-threading-and-concurrency-knowledge-in-increasingly-popular-languages/463249#463249Comment by Alex Miller on Re-creating threading and concurrency knowledge in increasingly popular languagesAlex Miller2009-10-25T02:46:57Z2009-10-25T02:46:57ZWell, it has the most constrained one because they actually are trying to hit a portable target. You can see some of the wiggle coming back in the upcoming Fences API though. http://stackoverflow.com/questions/1416730/how-to-sort-a-view-using-drupal-fivestar-average-ratings/1416755#1416755Comment by Alex Miller on How to sort a view using Drupal Fivestar average ratings?Alex Miller2009-09-13T03:52:00Z2009-09-13T03:52:00ZI was not aware such a thing existed...I'll check it out.http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/1236858#1236858Comment by Alex Miller on What is the most frequent concurrency problem you've encountered in Java?Alex Miller2009-08-06T14:17:24Z2009-08-06T14:17:24ZThis answer already exists with 22 votes on it. Please just upvote existing answers to support the poll format.http://stackoverflow.com/questions/1158980/where-is-java-source-code-for-various-com-sun-packages-on-leopard/1159122#1159122Comment by Alex Miller on Where is Java source code for various com.sun.* packages on Leopard?Alex Miller2009-07-21T13:28:01Z2009-07-21T13:28:01ZOften com.sun.* are not in the available source as they are not part of the JDK.http://stackoverflow.com/questions/1070703/how-can-i-require-a-generic-parameter-to-be-an-enum-that-implements-an-interface/1071089#1071089Comment by Alex Miller on How can I require a generic parameter to be an enum that implements an interface?Alex Miller2009-07-01T20:51:07Z2009-07-01T20:51:07ZFrom writing a small amount of code that uses this stuff, my impression is that it's a little weird. Can't say I've seen it anywhere else.
Something with a 7 in the name will release in 2010 I'm pretty sure. Whether it will be "Java 7" as endorsed by the JCP, I don't know. Only Oracle can answer that now...