User Alex Miller - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T09:17:45Z http://stackoverflow.com/feeds/user/7671 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1091251/ehcache-disable/1689942#1689942 0 Answer by Alex Miller for EHCache Disable Alex Miller 2009-11-06T19:50:33Z 2009-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#1689882 0 Answer by Alex Miller for EHCache error on looking up by cache key Alex Miller 2009-11-06T19:41:52Z 2009-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#1689813 0 Answer by Alex Miller for Ehcache / Hibernate and RMI replication with large number of entities Alex Miller 2009-11-06T19:32:08Z 2009-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-ratings 1 How to sort a view using Drupal Fivestar average ratings? Alex Miller 2009-09-13T02:52:06Z 2009-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 &lt;&gt; 0) ORDER BY node_title ASC </code></pre> http://stackoverflow.com/questions/1416730/how-to-sort-a-view-using-drupal-fivestar-average-ratings/1416865#1416865 1 Answer by Alex Miller for How to sort a view using Drupal Fivestar average ratings? Alex Miller 2009-09-13T04:41:37Z 2009-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-java 30 What is the most frequent concurrency problem you've encountered in Java? Alex Miller 2009-01-20T15:58:38Z 2009-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#364813 4 Answer by Alex Miller for Should an interface that is inherited from base-class be implemented explicitly in subclass? Alex Miller 2008-12-13T04:07:09Z 2009-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-tomcat 4 Bad Gateway 502 error with Apache mod_proxy and Tomcat Alex Miller 2008-10-04T00:51:54Z 2009-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#344857 5 Answer by Alex Miller for Why is January month 0 in Java Calendar ? Alex Miller 2008-12-05T19:25:22Z 2009-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#1159175 2 Answer by Alex Miller for Where is Java source code for various com.sun.* packages on Leopard? Alex Miller 2009-07-21T13:28:56Z 2009-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-mysql 3 Is the primary key automatically indexed in MySQL? Alex Miller 2009-07-01T20:21:26Z 2009-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#1108158 1 Answer by Alex Miller for Hibernate: Criteria vs. HQL Alex Miller 2009-07-10T07:21:51Z 2009-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#1108152 1 Answer by Alex Miller for Why does query caching with Hibernate make the query ten times slower? Alex Miller 2009-07-10T07:20:28Z 2009-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#1108148 1 Answer by Alex Miller for automatic query cache invalidation Alex Miller 2009-07-10T07:19:18Z 2009-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#1071113 2 Answer by Alex Miller for Multi java processes by jvm ? Alex Miller 2009-07-01T20:11:12Z 2009-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#1071089 1 Answer by Alex Miller for How can I require a generic parameter to be an enum that implements an interface? Alex Miller 2009-07-01T20:06:53Z 2009-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/1036364/good-example-of-livelock 1 Good example of livelock? Alex Miller 2009-06-24T04:15:46Z 2009-06-25T20:46:57Z <p>I understand what livelock is but I was wondering if anyone had a good code-based example of it? And by code-based, I do NOT mean "two people trying to get past each other in a corridor". If I read that again, I'll lose my lunch. </p> http://stackoverflow.com/questions/1036364/good-example-of-livelock/1043881#1043881 0 Answer by Alex Miller for Good example of livelock? Alex Miller 2009-06-25T13:20:28Z 2009-06-25T13:20:28Z <p>One example here might be using a timed tryLock to obtain more than one lock and if you can't obtain them all, back off and try again.</p> <pre><code>boolean tryLockAll(Collection&lt;Lock&gt; locks) { boolean grabbedAllLocks = false; for(int i=0; i&lt;locks.size(); i++) { Lock lock = locks.get(i); if(!lock.tryLock(5, TimeUnit.SECONDS)) { grabbedAllLocks = false; // undo the locks I already took in reverse order for(int j=i-1; j &gt;= 0; j--) { lock.unlock(); } } } } </code></pre> <p>I could imagine such code would be problematic as you have lots of threads colliding and waiting to obtain a set of locks. But I'm not sure this is very compelling to me as a simple example. </p> http://stackoverflow.com/questions/919227/this-class-uses-atomicbooleans-is-it-thread-safe/920970#920970 2 Answer by Alex Miller for This class uses AtomicBooleans. Is it thread safe ? Alex Miller 2009-05-28T13:56:21Z 2009-05-28T13:56:21Z <p>I think others are covering correctness adequately in their comments. My only additional comment would be that I am concerned a bit about the placement of the release in the finally. Seems like you might really want to wrap the whole block there (including the _xmppConnProvider.get() call) in a try { } finally { } that would guarantee you would always release the lock. Otherwise, some kind of unchecked exception could happen in there and leave you in an unrecoverable state. </p> <p>Stylistically, I regard this code as much more difficult to reason about than simply using synchronized/Lock to achieve mutual exclusion. I would start with code that is easy to reason about and only make it more complicated if you can prove that this is a hot spot. </p> http://stackoverflow.com/questions/720143/terracotta-compass-hibernate-hsqldb-jms/916042#916042 1 Answer by Alex Miller for Terracotta + Compass = Hibernate + HSQLDB + JMS? Alex Miller 2009-05-27T14:31:49Z 2009-05-27T14:31:49Z <p>Several Terracotta users have built systems like this in the past, so I can you tell you by proof of existence that it can be done. :)</p> <p>Compass does have support for clustering with Terracotta so that might help you. I suspect you might get further faster by just being careful with how you create your clustered data structures. </p> <p>Regarding your requirements and Terracotta:</p> <p>1) 10k objects is quite small from a Terracotta perspective</p> <p>2) 5 sec update rate doesn't seem like an issue. Might depend how many nodes there are and whether there is any natural partitioning you can take advantage of. All updates will be persistent.</p> <p>3) 1-5 second query time seems quite easy. Building your own well-organized data structures for lookup is the tricky part. Obviously you want to avoid scanning all the data.</p> <p>4) Terracotta currently supports Glassfish v1 and v2. </p> <p>If you post on the <a href="http://forums.terracotta.org" rel="nofollow">Terracotta forums</a>, you could probably get more Terracotta eyeballs on the problem. </p> http://stackoverflow.com/questions/815243/how-does-terracotta-work-in-this-situation/820336#820336 4 Answer by Alex Miller for How does Terracotta work in this situation? Alex Miller 2009-05-04T14:24:55Z 2009-05-04T14:24:55Z <p>The answer is not really 1 or 2. Objects are striped across the server mirror groups. The first time this field is set, a transaction is created and that mirror group chosen for that first transaction will "own" the object after that. </p> <p>With respect to both 1 and 2, not all active server groups need to be updated so there is no need to to wait for either of those conditions.</p> <p>You can find more info at the Terracotta documentation about configuring the Terracotta server array:</p> <ul> <li><a href="http://terracotta.org/web/display/docs/Terracotta+Server+Arrays" rel="nofollow">http://terracotta.org/web/display/docs/Terracotta+Server+Arrays</a></li> </ul> <p>From a locking point of view, the clustered lock on this Person object would be held (mutual exclusion across the cluster) while performing the object modification. The scope of the synchronized block forms the transaction mentioned above. In the getObj() method, you could configure this as a read lock which would allow multiple concurrent readers across the cluster.</p> http://stackoverflow.com/questions/779208/terracotta-cannot-cast-to-com-tc-object-bytecode-transparentaccess/791576#791576 1 Answer by Alex Miller for Terracotta - Cannot cast to com.tc.object.bytecode.TransparentAccess Alex Miller 2009-04-26T20:43:57Z 2009-04-26T20:43:57Z <p>You need to create a tc-config.xml config file as described in <a href="http://www.terracotta.org/web/display/orgsite/Spring+Integration" rel="nofollow">http://www.terracotta.org/web/display/orgsite/Spring+Integration</a>.</p> http://stackoverflow.com/questions/788858/what-is-the-best-conference-in-the-united-states-for-software-developers/789903#789903 3 Answer by Alex Miller for What is the best conference in the United States for Software Developers Alex Miller 2009-04-25T23:02:49Z 2009-04-25T23:02:49Z <p>I don't think there is a best conference. There's just a best conference for you. </p> <p>Some conferences I've enjoyed:</p> <ul> <li><a href="http://nofluffjuststuff.com" rel="nofollow">No Fluff Just Stuff</a> - great great speakers (due to their time on the tour, they are the best), solid technical content, comes to (or near) your town</li> <li><a href="http://java.sun.com/javaone" rel="nofollow">JavaOne</a> - if you're a Java dude, JavaOne is the place to be (at least till it becomes OracleOne) :)</li> <li><a href="http://www.codemash.org/" rel="nofollow">CodeMash</a> - lot of fun in a different kind of venue</li> </ul> <p>I also have to plug my own nascent conference coming this October 23, 2009 in St. Louis:</p> <ul> <li><a href="http://thestrangeloop.com" rel="nofollow">Strange Loop</a></li> </ul> http://stackoverflow.com/questions/789132/how-do-you-make-your-java-application-memory-efficient/789894#789894 1 Answer by Alex Miller for How do you make your Java application memory efficient? Alex Miller 2009-04-25T22:57:57Z 2009-04-25T22:57:57Z <p>You could just store fewer objects in memory. :) Use a cache that spills to disk or use Terracotta to cluster your heap (which is virtual) allowing unused parts to be flushed out of memory and transparently faulted back in.</p> http://stackoverflow.com/questions/789147/terracotta-performance-and-tips/789513#789513 5 Answer by Alex Miller for Terracotta Performance and Tips Alex Miller 2009-04-25T18:57:47Z 2009-04-25T18:57:47Z <p>You might find that batching several changes under one lock scope will perform better. Each synchronized block/method forms a write transaction (assuming you use a write lock) that must be sent to the server (and possibly back out to other nodes). By changing a bunch of fields, possibly on a bunch of objects under one lock, you reduce the overhead of creating a transaction. Something to play with at least.</p> <p>Partitioning is also a key way to improve performance. Changes only need to be sent to nodes that are actually using an object. So if you can partition which nodes usually touch specific objects that reduces the number of changes that have to be sent around the cluster, which improves performance.</p> <p>unnutz's suggestions about using CHM or CSM are good ones. CHM allows greater concurrency (as each internal segment can be locked and used concurrently) - make sure to experiment with larger segment counts too. CSM has effectively one lock per entry so has effectively N partitions in an N-sized table. That can greatly reduce lock contention (at the cost of managing more internal lock objects). Changes coming soon for CSM will make the lock mgmt cost much lower.</p> <p>Generally we find a good strategy is:</p> <ol> <li>Build a performance test (should be multi-threaded and multi-node and similar to your app (or your actual app!)</li> <li>Tune objects - look at your clustered object graph in the dev-console to find objects that don't need to be clustered at all - sometimes this happens accidentally (remove or cut the cluster with a transient field). Sometimes you might be clustering a Date where a long would do. Small change but that's one object per map entry and that might make a difference.</li> <li>Tune locks - use the lock profiler in the dev-console to find hot locks or locks that are too narrow or too wide. The clustered stats recorder can help look at transaction size as well.</li> <li>Tune GC and DGC - tune JVM garbage collection, then tune Terracotta distributed GC by turning on changing the frequency of young gen gc.</li> <li>Tune TC server - lots of very detailed tunings to do here, but usually not worth it till the stuff above is tuned.</li> </ol> <p>Feel free to ask on the <a href="http://forums.terracotta.org" rel="nofollow">Terracotta forums</a> as well - all of engineering, field engineering, product mgmt watch those and answer there.</p> http://stackoverflow.com/questions/770964/using-spring-hibernate-transactional-cache-in-tomcat 2 Using Spring + Hibernate Transactional cache in Tomcat? Alex Miller 2009-04-21T03:45:16Z 2009-04-21T04:05:06Z <p>It seems that Hibernate transactional cache mode requires the use of a JTA transaction manager. In an app server such as Glassfish, Weblogic, etc, Spring can use the JTA transaction manager. Tomcat does not have a JTA transaction manager.</p> <p>Is there one that people use in this scenario? Or do people just not use transactional cache mode with Tomcat?</p> http://stackoverflow.com/questions/183629/what-is-the-best-practice-for-jpa-hibernate-entity-classes-and-synchronization 4 What is the best practice for JPA/Hibernate entity classes and synchronization? Alex Miller 2008-10-08T16:23:38Z 2009-04-16T21:15:44Z <p>It seems like most examples of JPA/Hibernate entity bean classes I've seen do no explicit synchronization. Yet, it is possible to call getters/setters on those objects in the context of building up a transaction. And it's possible for those methods to be called across multiple threads (although maybe that's unusual and weird). </p> <p>It seems like if it is built up across multiple threads then it's possible for changes to object state to be lost, which would be sad. </p> <p>So, is leaving out synchronization best practice? Is the Hibernate instrumented code taking care of proper synchronization for me? </p> <p>As an example:</p> <pre><code>@Entity public class Ninja { @Id @GeneratedValue private Long id; @Column private String name; @Column private int throwingStars; public Ninja() {} public int getThrowingStars() { return throwingStars; } public void addThrowingStar() { throwingStars += 1; } } </code></pre> <p>Do the throwing star methods need synchronization? I sure don't want my ninja to lose any throwing stars.</p> http://stackoverflow.com/questions/753956/whats-the-upcoming-java-concurrency-library-jsr166y-jsr166z/754605#754605 5 Answer by Alex Miller for What's the upcoming Java concurrency library: jsr166y? jsr166z? Alex Miller 2009-04-16T03:08:43Z 2009-04-16T14:14:54Z <p>JSR 166 was the original Java concurrency jsr for Java 5 that created java.util.concurrent. They did a maintenance rev in Java 6 called JSR 166x. The Java 7 maintenance rev is JSR 166y. JSR 166z is the closures prototype version.</p> <p>Currently slated to be included in JSR 166y is:</p> <ul> <li>Fork/join (but NOT the ParallelArray framework)</li> <li>Fences API (low level), trying to remove use of Unsafe calls</li> <li>TransferQueue / LinkedTransferQueue collection</li> <li>ConcurrentReferenceHashMap (variable strong/weak refs, concurrent, etc)</li> <li>Phasers (CyclicBarriers on steroids)</li> </ul> <p>For more info, search or join the concurrency-interest mailing list:</p> <ul> <li><a href="http://cs.oswego.edu/mailman/listinfo/concurrency-interest" rel="nofollow">http://cs.oswego.edu/mailman/listinfo/concurrency-interest</a></li> </ul> http://stackoverflow.com/questions/741082/what-differences-will-java-7-have-from-java-6-and-what-will-it-mean-to-us-java/741163#741163 21 Answer by Alex Miller for What differences will Java 7 have from Java 6, and what will it mean to us Java programmers? Alex Miller 2009-04-12T02:03:38Z 2009-04-12T02:03:38Z <p>As far as what changes you'll see in your day-to-day work, my guess is that the major impact will be stuff like <a href="http://tech.puredanger.com/java7#jsr203" rel="nofollow">JSR 203</a> which overhauls the file system API. If <a href="http://tech.puredanger.com/java7#jsr310" rel="nofollow">JSR 310</a> is included, then it would also have a major impact on how you interact with any aspect of the date and time APIs. Many of the other JSRs will only impact you if you happen to already do something in that particular area (JMX - <a href="http://tech.puredanger.com/java7#jsr255" rel="nofollow">JSR 255</a>, concurrency - <a href="http://tech.puredanger.com/java7#jsr166" rel="nofollow">JSR 166</a>, etc). </p> <p>I think it's unknown at this point how much <a href="http://tech.puredanger.com/java7#jsr294" rel="nofollow">JSR 294</a> and <a href="http://tech.puredanger.com/java7#jigsaw" rel="nofollow">Jigsaw</a> will impact us day to day. It's possible that it will be a new and important way to define modules that will impact the way we bundle libraries, define dependencies, and deploy our apps. Or it may just be used in the JDK and ignored elsewhere. Only time will tell.</p> <p>There will be a handful of language changes that come out of Project Coin but they are mostly going to be small useful but not revolutionary changes that help remove some boilerplate.</p> <p>I think the biggest thing most people will notice may be performance. As usual, each JDK brings a whole new set of performance optimizations. We've already seen some very encouraging results in <a href="http://blogs.sun.com/xuemingshen/entry/faster%5Fnew%5Fstring%5Fbytes%5Fcs" rel="nofollow">String performance</a>, <a href="http://lingpipe-blog.com/2009/03/30/jdk-7-twice-as-fast-as-jdk-6-for-arrays-and-arithmetic/" rel="nofollow">array performance</a>, and a new concurrent garbage collector (<a href="http://tech.puredanger.com/java7#g1" rel="nofollow">G1</a>). I suspect many people will find that their existing code will work and run noticeably faster than it did in the past. </p> http://stackoverflow.com/questions/710266/why-will-there-be-no-native-properties-in-java-7/710844#710844 5 Answer by Alex Miller for Why will there be no native properties in Java 7? Alex Miller 2009-04-02T17:49:04Z 2009-04-02T21:28:12Z <p>There are some high-level reasons related to schedule and resources of course. Implementation of properties and understanding all of the ramifications and intersections with other language features is a large task similar to the size of various Java 5 language changes.</p> <p>But I think the real reason Sun is not pushing properties is the same as closures:</p> <p>1) There is no consensus on what the implementation should look like. Or rather, there are many competing alternatives and people who are passionate about properties disagree about crucial parts of the implementation. </p> <p>2) Perhaps more importantly, there is a significant lack of consensus about whether the feature is wanted at all. While many people want properties, there are also many people that don't think it's necessary or useful (in particular, I think server-side people see properties as far less crucial to their daily life than swing programmers).</p> <p>Properties history here:</p> <ul> <li><a href="http://tech.puredanger.com/java7#property" rel="nofollow">http://tech.puredanger.com/java7#property</a></li> </ul> http://stackoverflow.com/questions/943888/how-to-config-querycache-in-ehcache-xml/943910#943910 Comment by Alex Miller on How to config QueryCache in ehcache.xml Alex Miller 2009-11-06T19:36:13Z 2009-11-06T19:36:13Z Make 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#897026 Comment by Alex Miller on Ehcache / Hibernate and RMI replication with large number of entities Alex Miller 2009-11-06T19:34:19Z 2009-11-06T19:34:19Z The 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#814394 Comment by Alex Miller on Ehcache / Hibernate and RMI replication with large number of entities Alex Miller 2009-11-06T19:33:22Z 2009-11-06T19:33:22Z If you just set up a defaultcache, then that will be cloned to create each necessary entity cache. AFAIK, you will NOT get &quot;one big cache&quot;. http://stackoverflow.com/questions/440036/re-creating-threading-and-concurrency-knowledge-in-increasingly-popular-languages/463249#463249 Comment by Alex Miller on Re-creating threading and concurrency knowledge in increasingly popular languages Alex Miller 2009-10-25T02:46:57Z 2009-10-25T02:46:57Z Well, 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#1416755 Comment by Alex Miller on How to sort a view using Drupal Fivestar average ratings? Alex Miller 2009-09-13T03:52:00Z 2009-09-13T03:52:00Z I 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#1236858 Comment by Alex Miller on What is the most frequent concurrency problem you've encountered in Java? Alex Miller 2009-08-06T14:17:24Z 2009-08-06T14:17:24Z This 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#1159122 Comment by Alex Miller on Where is Java source code for various com.sun.* packages on Leopard? Alex Miller 2009-07-21T13:28:01Z 2009-07-21T13:28:01Z Often 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#1071089 Comment by Alex Miller on How can I require a generic parameter to be an enum that implements an interface? Alex Miller 2009-07-01T20:51:07Z 2009-07-01T20:51:07Z From 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 &quot;Java 7&quot; as endorsed by the JCP, I don't know. Only Oracle can answer that now... http://stackoverflow.com/questions/1071180/is-the-primary-key-automatically-indexed-in-mysql/1071209#1071209 Comment by Alex Miller on Is the primary key automatically indexed in MySQL? Alex Miller 2009-07-01T20:45:58Z 2009-07-01T20:45:58Z I found that link by searching before I asked the question. But it doesn't seem to imply that or anything else much about this question to me. http://stackoverflow.com/questions/1071180/is-the-primary-key-automatically-indexed-in-mysql/1071209#1071209 Comment by Alex Miller on Is the primary key automatically indexed in MySQL? Alex Miller 2009-07-01T20:44:15Z 2009-07-01T20:44:15Z I found that page before I asked the question but it doesn't appear to have anything to do with the question. http://stackoverflow.com/questions/1036364/good-example-of-livelock/1041470#1041470 Comment by Alex Miller on Good example of livelock? Alex Miller 2009-06-25T13:14:45Z 2009-06-25T13:14:45Z Yeah, I understand that. I'm looking for an actual code example of such. The question is what does &quot;step aside&quot; mean and how does it produce such a scenario. http://stackoverflow.com/questions/1036364/good-example-of-livelock Comment by Alex Miller on Good example of livelock? Alex Miller 2009-06-24T21:14:39Z 2009-06-24T21:14:39Z Curse you! I lost my lunch! http://stackoverflow.com/questions/741082/what-differences-will-java-7-have-from-java-6-and-what-will-it-mean-to-us-java/741163#741163 Comment by Alex Miller on What differences will Java 7 have from Java 6, and what will it mean to us Java programmers? Alex Miller 2009-06-22T02:51:50Z 2009-06-22T02:51:50Z I think you can find the existing work in the Jigsaw project on java.net: <a href="http://openjdk.java.net/projects/jigsaw/" rel="nofollow">openjdk.java.net/projects/jigsaw</a> Not sure when it will be merged. http://stackoverflow.com/questions/741082/what-differences-will-java-7-have-from-java-6-and-what-will-it-mean-to-us-java/741163#741163 Comment by Alex Miller on What differences will Java 7 have from Java 6, and what will it mean to us Java programmers? Alex Miller 2009-06-20T21:32:32Z 2009-06-20T21:32:32Z Well, you could look at my recent blog: <a href="http://tech.puredanger.com/2009/06/04/javaone-jigsaw/" rel="nofollow">tech.puredanger.com/2009/06/&hellip;</a> http://stackoverflow.com/questions/741082/what-differences-will-java-7-have-from-java-6-and-what-will-it-mean-to-us-java/741163#741163 Comment by Alex Miller on What differences will Java 7 have from Java 6, and what will it mean to us Java programmers? Alex Miller 2009-06-16T23:27:38Z 2009-06-16T23:27:38Z just a few in the jdk itself - core, awt, swing, tools, corba, and couple others. I don't think they will support submodules.