User Bill Michell - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T00:35:30Z http://stackoverflow.com/feeds/user/7938 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/84799/what-is-the-single-best-free-eclipse-plugin-for-a-java-developer 12 What is the single best free Eclipse plugin for a Java developer Bill Michell 2008-09-17T15:58:44Z 2009-11-24T08:00:00Z <p>Some Eclipse plugins are mandated by your environment. The appropriate source code management plugin, for example - and I'm not interested in those.</p> <p>Some provide useful enhancements, but in a specific niche. I'm not interested in those.</p> <p>Some are great, but cost money. I'm not interested in those.</p> <p>Some were really useful on older versions of Eclipse, but are now part of the core build of the latest Eclipse version (3.4 as I write this). I'm not interested in those.</p> <p>I want advice on which plugins every Java SE developer should be installing, one per answer please.</p> http://stackoverflow.com/questions/1746183/is-a-download-class-a-bad-candidate-for-immutability/1748489#1748489 0 Answer by Bill Michell for Is a Download class a bad candidate for immutability? Bill Michell 2009-11-17T12:20:20Z 2009-11-17T12:20:20Z <p>The way that API is structured means that this class has to encapsulate mutable state somehow.</p> <p>However, just because the class is mutable, that doesn't mean you need to slap a <code>synchronized</code> keyword on every method.</p> <p>You should be able to limit your need to synchronize to much smaller blocks inside the code - or even eliminate it altogether by using some of the <code>Atomic</code> classes.</p> <p>I'd strongly recommend reading <a href="http://www.javaconcurrencyinpractice.com/" rel="nofollow">Java Concurrency in Practice</a>, which I consider the definitive work on implementing concurrency in java programs. Sure, it doesn't shine a light into the darkest corners, but it will certainly help you understand what is safe, what is unsafe, and what you should avoid without significant preparation...</p> http://stackoverflow.com/questions/354689/how-to-rate-a-connect-four-game-situation-in-java/355580#355580 1 Answer by Bill Michell for How to rate a connect four game situation in java Bill Michell 2008-12-10T10:04:52Z 2009-11-11T10:51:36Z <p>The search space for Connect 4 isn't impossibly large. For a simple implementation, albeit one that'll take a while to run (perhaps tens of minutes) do a minimax search until someone wins, or the game ends. Assign +1 or -1 for a win for one player or the other, and 0 for a draw.</p> http://stackoverflow.com/questions/1536953/recommend-a-fast-scalable-persistent-map-java/1537086#1537086 0 Answer by Bill Michell for Recommend a fast & scalable persistent Map - Java Bill Michell 2009-10-08T11:00:36Z 2009-10-08T11:00:36Z <p><a href="http://www.danga.com/memcached/" rel="nofollow">memcached</a> provides an excellent scalable map-based distributable cache. If you use this and back it with one of the databases mentioned to provide persistance, you may well solve your performance problems, at least for frequently hit keys (as long as you provide enough RAM to cache all the values that are frequently accessed).</p> http://stackoverflow.com/questions/1504653/only-one-of-multiple-threads-to-execute-a-particular-code-path/1509267#1509267 1 Answer by Bill Michell for only one of multiple threads to execute a particular code path Bill Michell 2009-10-02T12:37:40Z 2009-10-06T11:05:36Z <p>This is a classical application for either a <a href="http://en.wikipedia.org/wiki/Mutual%5Fexclusion" rel="nofollow">Mutex</a> or a <a href="http://en.wikipedia.org/wiki/Semaphore%5F%28programming%29" rel="nofollow">Semaphore</a></p> <p>A mutex ensures that a specific piece of code (or several pieces of code) can only be run by a single thread at a time. You could be clever and use a different mutex for each table, or simply constrain the whole initialisation block to one thread at a time.</p> <p>A semaphore (or set of semaphores) could perform exactly the same function.</p> <p>Most lock implementations will use a mutex internally, so look at what lock code is already available in the language or libraries you are using.</p> <p>@ebpower has it right that in certain applications, you would actually be more efficient to catch an exception caused by an attempt to create the same table multiple times, though this may not be the case in your example.</p> <p>However there are many other ways of proceeding. For example, you could use a single-threaded <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/ExecutorService.html" rel="nofollow">ExecutorService</a> (sorry, I could only find a Java reference) that has responsibility for creating any tables that your worker threads discover are missing. If it gets two requests for the same table, it simply ignores the later ones.</p> <p>A variant on a <a href="http://en.wikipedia.org/wiki/Memoization" rel="nofollow">Memoizer</a> (remembering table references, creating them first if necessary) would also work under the circumstances. The book <a href="http://www.javaconcurrencyinpractice.com/" rel="nofollow">Java Concurrency In Practice</a> walks through the implementation of a nice <a href="http://www.javaconcurrencyinpractice.com/listings/Memoizer.java" rel="nofollow">Memoizer class</a>, but this would be pretty simple to port to any other language with effective concurrency building blocks.</p> http://stackoverflow.com/questions/1514924/handling-sleep-in-java-scheduled-executor-service/1519431#1519431 1 Answer by Bill Michell for handling sleep in java scheduled executor service Bill Michell 2009-10-05T11:04:28Z 2009-10-05T11:04:28Z <p>Tasks which sleep are inherently unfriendly for running in any kind of bounded thread pool. The sleep is explicitly telling the thread that it must do nothing for a period of time.</p> <p>If possible, split the task into 2 (or more parts), eliminating the sleep completely. Get the first half-task to schedule the second task with an appropriate delay.</p> <p>Failing that, you could consider increasing the size of your thread pool somewhat - either setting a much larger cap to its size, or possibly even eliminating the cap altogether (not recommended for a server than might end up with many clients).</p> <p>Alternatively, move the tasks with sleep statements in them into their own Scheduled executor. Then, they'll delay each other, but better-behaved tasks, with no wait statements in them, will get preferential treatment.</p> http://stackoverflow.com/questions/1507949/where-can-i-find-best-practice-info-on-scm-perforce/1509179#1509179 4 Answer by Bill Michell for Where can I find best practice info on SCM (perforce) Bill Michell 2009-10-02T12:13:44Z 2009-10-02T12:13:44Z <p><a href="http://rads.stackoverflow.com/amzn/click/0596101856" rel="nofollow">Practical Perforce</a> includes a great deal of general SCM advice, but also gives the specific Perforce commands required to perform the actions recommended.</p> <p>Note that this book was written by a Perforce employee...</p> http://stackoverflow.com/questions/1470996/what-are-best-development-practices-for-multi-jre-version-support/1472718#1472718 0 Answer by Bill Michell for What are best development practices for multi JRE version support? Bill Michell 2009-09-24T16:15:18Z 2009-09-24T16:15:18Z <p>One option would be to break the code into 3 projects.</p> <p>One project would contain common stuff which would work on either version of java. </p> <p>One project would contain the java6 implementations and would depend on the common project.</p> <p>One project would contain the java5 implementations and would depend on the common project.</p> <p>Breaking things into interfaces with implementations that implement those interfaces, you could eliminate any build dependencies. You would almost certainly need dependency injection of one kind or another to help wire your concrete classes together.</p> <p>Working in Eclipse, you could set the java6 project to target java6, and the other 2 projects to target java5. By selecting the JRE on a project by project basis, you'd show up any dependencies you missed.</p> <p>By getting a little clever with your build files, you could build the common bit both ways, and depend on the correct version, for deployment - though I'm not sure this would bring much benefit.</p> <p>You would end up with two separate versions of your application - one for java6, one for java5.</p> http://stackoverflow.com/questions/1390074/how-to-express-inter-project-dependencies-in-eclipse-pde/1392553#1392553 0 Answer by Bill Michell for How to express inter project dependencies in Eclipse PDE Bill Michell 2009-09-08T07:48:51Z 2009-09-08T07:48:51Z <p>With a complex set of build dependencies, I've found Maven2 and Hudson (for CI) to be a pretty nice combination. It took a while to set up the infrastructure and get my head around configuration, but after that, it just worked.</p> <p>Of course, you are dependent then on Maven2 (or Hudson) support for your build mechanism. I'm not sure how well Eclipse Headless builds are supported. But if the only reason you're using Eclipse headless is to allow the dependencies to be expressed in a single place, do yourself a favour and switch.</p> http://stackoverflow.com/questions/1378310/performance-concurrenthashmap-vs-hashmap/1378870#1378870 1 Answer by Bill Michell for Performance ConcurrentHashmap vs HashMap Bill Michell 2009-09-04T12:14:31Z 2009-09-04T12:14:31Z <p>Thread safety is a complex question. If you want to make an object thread safe, do it consciously, and document that choice. People who use your class will thank you if it is thread safe when it simplifies their usage, but they will curse you if an object that once was thread safe becomes not so in a future version. Thread safety, while really nice, is not just for Christmas!</p> <p>So now to your question:</p> <p>ConcurrentHashMap (at least in <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ConcurrentHashMap.html" rel="nofollow">Sun's current implementation</a>) works by dividing the underlying map into a number of separate buckets. Getting an element does not require any locking per se, but it does use atomic/volatile operations, which implies a memory barrier (potentially very costly, and interfering with other possible optimisations).</p> <p>Even if all the overhead of atomic operations can be eliminated by the JIT compiler in a single-threaded case, there is still the overhead of deciding which of the buckets to look in - admittedly this is a relatively quick calculation, but nevertheless, it is impossible to eliminate.</p> <p>As for deciding which implementation to use, the choice is probably simple.</p> <p>If this is a static field, you almost certainly want to use ConcurrentHashMap, unless testing shows this is a real performance killer. Your class has different thread safety expectations from the instances of that class.</p> <p>If this is a local variable, then chances are a HashMap is sufficient - unless you know that references to the object can leak out to another thread. By coding to the Map interface, you allow yourself to change it easily later if you discover a problem.</p> <p>If this is an instance field, and the class hasn't been designed to be thread safe, then document it as not thread safe, and use a HashMap.</p> <p>If you know that this instance field is the only reason the class isn't thread safe, and are willing to live with the restrictions that promising thread safety implies, then use ConcurrentHashMap, unless testing shows significant performance implications. In that case, you might consider allowing a user of the class to choose a thread safe version of the object somehow, perhaps by using a different factory method.</p> <p>In either case, document the class as being thread safe (or conditionally thread safe) so people who use your class know they can use objects across multiple threads, and people who edit your class know that they must maintain thread safety in future.</p> http://stackoverflow.com/questions/1339870/fastest-way-to-compare-strings-literal-and-numerical/1340054#1340054 2 Answer by Bill Michell for Fastest way to compare strings (literal and numerical) Bill Michell 2009-08-27T09:59:30Z 2009-08-27T09:59:30Z <p>Don't store the values as String objects. Create your own wrapper that only ever calls Double.parseDouble once for each String. Cache the response (either the value or the Exception). It could probably cache a case-insensitive version of the string too.</p> http://stackoverflow.com/questions/1335821/critique-my-exception-handling-strategy/1339709#1339709 0 Answer by Bill Michell for Critique my exception handling strategy Bill Michell 2009-08-27T08:38:15Z 2009-08-27T08:57:29Z <p>There are some extremely good answers already, but I wanted to contribute an additional thought.</p> <p>There isn't just a single error-handling strategy that fits all cases.</p> <p>In general, you should be consciously making a choice between two fundamentally opposite cases. The choice will differ depending on what you are building, and what layer in your application you are currently working on. The two alternatives are:</p> <ol> <li><p>Fail Fast. Immediately an error arises, you assemble all the information you have and ensure it reaches somebody who can do something about it - either in your calling code, by throwing an Exception, or perhaps calling the help desk, who can get the code fixed before any data corruption occurs. Masking the error, or failing to capture sufficient information about it, will make it harder to figure out what went wrong.</p></li> <li><p>Be bulletproof. Carry on regardless, because stopping would be a disaster. Of course, you still need to capture information about the failure and report it somehow, but in this case, you need to figure out how you are going to recover and carry on.</p></li> </ol> <p>Many bugs are introduced because the programmer adopts the second strategy when they should have adopted the first. If it isn't obvious how you should recover from the situation, you should probably be throwing an Exception and letting whoever called you make a sensible choice - they may have a better idea what to do than you do, but they need to have sufficient information to decide what that is.</p> <p>Another useful piece of advice is to ensure that the exception you throw makes sense at the API level. If your API is designed to render data in html format, you don't want to see a database exception thrown simply because somebody has decided to enable the audit trail. Cases like this are often best handled using chained exceptions - <code>throw new ApiException(causeException);</code> for example.</p> <p>Finally, I want to give my take on unchecked and checked exceptions. I like to reserve unchecked exceptions for situations that mean a programmer has made a mistake. Passing null to a method that requires an object reference, for example. Where the error could arise even if the programmer is perfect (FileNotFound if the file has been deleted since the programmer checked its existence, for example), a checked exception is usually appropriate. Essentially, the programmer who creates the API is saying that "even if you got all the inputs right, then this problem might still crop up, and you may have to deal with it".</p> http://stackoverflow.com/questions/833889/start-thread-with-a-given-execution-time/847631#847631 1 Answer by Bill Michell for Start Thread with a given execution time Bill Michell 2009-05-11T11:04:10Z 2009-05-11T11:04:10Z <p>Take a look at the <code>java.lang.concurrent</code> package in Java 5 and later, in particular the <code>CompletionService</code> interface and the classes that implement it.</p> <p>This interface includes calls that allow you to submit a task and either wait for it to complete, or else continue after a timeout.</p> http://stackoverflow.com/questions/773824/why-are-there-so-few-open-source-gwt-apps/776709#776709 0 Answer by Bill Michell for Why are there so few open source GWT apps? Bill Michell 2009-04-22T11:17:26Z 2009-04-22T11:17:26Z <p>Personally, I've avoided GWT for projects I want to open source because I've found it tricky to use it for Test Driven Development in Eclipse. I wouldn't do open source any other way these days.</p> <p>There must be ways to get it working, but it resisted all my attempts, so I just switched to a different technology.</p> http://stackoverflow.com/questions/717643/net-application-multi-threading/721924#721924 0 Answer by Bill Michell for .net application multi-threading Bill Michell 2009-04-06T15:16:28Z 2009-04-06T15:16:28Z <p>@JaredPar gives an <a href="http://stackoverflow.com/questions/717643/-net-application-multi-threading/717645#717645">excellent answer</a>. Under some circumstances, though, it may not we worth rewriting code to be multi-threaded. Multithreaded code is more complicated, and adds a whole slew of additional types of bugs to wrestle with.</p> <p>However, in the simple case of a desktop application, it is sometimes worth leaving the second core of a dual core machine free, so that the operating system can use it for doing things like redrawing the screen for other applications, running the virus scanner, etc.</p> <p>Not the answer you particularly wanted to hear, but a pragmatic one in certain cases nevertheless.</p> http://stackoverflow.com/questions/641681/c-pattern-for-returning-asynchron-error-from-background-thread/697606#697606 0 Answer by Bill Michell for C: pattern for returning asynchron error from background thread? Bill Michell 2009-03-30T15:06:57Z 2009-03-30T15:06:57Z <p>You might take a look at java's <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/Future.html" rel="nofollow">Future API</a> for an alternate mechanism for dealing with asynchronous calls and errors. You could easily substitute the checked exceptions with some isError() or getError() methods if you preferred.</p> http://stackoverflow.com/questions/609826/performance-of-threadlocal-variable/610186#610186 6 Answer by Bill Michell for Performance of ThreadLocal variable Bill Michell 2009-03-04T11:36:20Z 2009-03-05T09:48:15Z <p>Modern JVMs implement ThreadLocal using an unsynchronised HashMap in the Thread.currentThread() object. This makes it extremely fast (though not nearly as fast as using a regular field access, of course), as well as ensuring that the ThreadLocal object gets tidied up when the Thread dies.</p> <p>Of course, new Object() is also very fast these days, and the Garbage Collectors are also very good at reclaiming short-lived objects.</p> <p>Unless you are certain that object creation is going to be expensive, or you need to persist some state on a thread by thread basis, you are better off going for the simpler allocate when needed solution, and only switching over to a ThreadLocal implementation when a profiler tells you that you need to.</p> http://stackoverflow.com/questions/563144/log4j-is-there-any-point-in-explicitly-specifying-the-class-name-in-the-call-to/564633#564633 1 Answer by Bill Michell for Log4J - Is there any point in explicitly specifying the class name in the call to LogManager.getLogger()? Bill Michell 2009-02-19T10:13:22Z 2009-02-25T21:38:34Z <p>Other posters have already commented that getClass won't work if you want to define a <code>static</code> Logger - and defining one per-instance is inefficient.</p> <p>If you want the correct class inferred at run time, and you are using at least Java 5, take a look at <a href="http://code.google.com/p/log5j/" rel="nofollow">log5j</a>, which wraps log4j in a Java 5 API.</p> <p>This lets you write things like:</p> <pre><code>private static final Logger log = Logger.getLogger(); </code></pre> <p>and even:</p> <pre><code>log.debug( "This thing broke: %s due to bar: %s on this thing: %s", foo, bar, car ); </code></pre> http://stackoverflow.com/questions/382478/how-can-threads-be-avoided/565151#565151 1 Answer by Bill Michell for How can threads be avoided? Bill Michell 2009-02-19T12:42:24Z 2009-02-19T12:42:24Z <p>There are some good libraries out there.</p> <p><a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ExecutorCompletionService.html" rel="nofollow">java.util.concurrent.ExecutorCompletionService</a> will take a collection of Futures (i.e. tasks which return values), process them in background threads, then bung them in a Queue for you to process further as they complete. Of course, this is Java 5 and later, so isn't available everywhere.</p> <p>In other words, all your code is single threaded - but where you can identify stuff safe to run in parallel, you can farm it off to a suitable library.</p> <p>Point is, if you can make the tasks independent, then thread safety isn't impossible to achieve with a little thought - though it is strongly recommended you leave the complicated bit (like implementing the ExecutorCompletionService) to an expert...</p> http://stackoverflow.com/questions/564061/is-java-overkill-for-news-websites/564929#564929 0 Answer by Bill Michell for Is Java overkill for news websites? Bill Michell 2009-02-19T11:48:29Z 2009-02-19T11:48:29Z <p><a href="http://www.bbc.co.uk" rel="nofollow">We</a> use java (amongst other things) to code a custom CMS for our <a href="http://news.bbc.co.uk" rel="nofollow">news site</a>, but we are probably an unusual case - one of the largest news sites on the web.</p> <p>Maybe java is the right answer for your client too - but it is more likely that they would get better value from buying in an existing solution, unless you can't find one that implements all the required features.</p> http://stackoverflow.com/questions/529085/java-how-to-generic-array-creation/536195#536195 1 Answer by Bill Michell for Java how to: Generic Array creation Bill Michell 2009-02-11T10:07:35Z 2009-02-11T10:07:35Z <p>Java generics work by checking types at compile time and inserting appropriate casts, but <em>erasing</em> the types in the compiled files. This makes generic libraries usable by code which doesn't understand generics (which was a deliberate design decision) but which means you can't normally find out what the type is at run time.</p> <p>The public <code>Stack(Class&lt;T&gt; clazz,int capacity)</code> constructor requires you to pass a Class object at run time, which means class information <em>is</em> available at runtime to code that needs it. And the <code>Class&lt;T&gt;</code> form means that the compiler will check that the Class object you pass is precisely the Class object for type T. Not a subclass of T, not a superclass of T, but precisely T.</p> <p>This then means that you can create an array object of the appropriate type in your constructor, which means that the type of the objects you store in your collection will have their types checked at the point they are added to the collection.</p> http://stackoverflow.com/questions/533102/what-strategy-do-you-use-for-package-naming-in-java-projects-and-why/533263#533263 0 Answer by Bill Michell for What strategy do you use for package naming in Java projects and why? Bill Michell 2009-02-10T17:10:31Z 2009-02-10T17:10:31Z <p>From a purely practical standpoint, java's visibility constructs allow classes in the same package to access methods and properties with <code>protected</code> and <code>default</code> visibility, as well as the <code>public</code> ones. Using non-public methods from a completely different layer of the code would definitely be a big code smell. So I tend to put classes from the same layer into the same package.</p> <p>I don't often use these protected or default methods elsewhere - except possibly in the unit tests for the class - but when I do, it is <em>always</em> from a class at the same layer</p> http://stackoverflow.com/questions/521015/is-alice-a-good-way-to-teach-programming/521050#521050 5 Answer by Bill Michell for Is Alice a good way to teach programming? Bill Michell 2009-02-06T16:41:44Z 2009-02-06T16:41:44Z <p>I've played with <a href="http://www.alice.org/kelleher/storytelling/index.html" rel="nofollow">Storytelling Alice</a> and found this pretty compelling. It is based on Alice, but with additions to make it more interesting (and easier to get into) for Middle School kids.</p> <p>I liked what I saw. The program, built with a GUI so syntax errors weren't possible, translated almost immediately into working animations. Nice.</p> http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/520986#520986 1 Answer by Bill Michell for What are common concurrency pitfalls? Bill Michell 2009-02-06T16:25:37Z 2009-02-06T16:25:37Z <p>Double-checked locking is <a href="http://www.cs.umd.edu/~pugh/java/memoryModel/DoubleCheckedLocking.html" rel="nofollow">broken</a>, at least in Java. Understanding why this is true, and how you can fix it, leads you deep into understanding concurrency issues and Java's memory model.</p> http://stackoverflow.com/questions/510632/whats-the-difference-between-concurrenthashmap-and-collections-synchronizedmapm/510660#510660 5 Answer by Bill Michell for What's the difference between ConcurrentHashMap and Collections.synchronizedMap(Map)? Bill Michell 2009-02-04T09:34:04Z 2009-02-04T09:34:04Z <p>ConcurrentHashMap is preferred when you can use it - though it requires at least Java 5.</p> <p>It is designed to scale well when used by multiple threads. Performance may be marginally poorer when only a single thread accesses the Map at a time, but significantly better when multiple threads access the map concurrently.</p> <p>I found a <a href="http://unserializableone.blogspot.com/2007/04/performance-comparision-between.html" rel="nofollow">blog entry</a> that reproduces a table from the excellent book <a href="http://www.javaconcurrencyinpractice.com/" rel="nofollow">Java Concurrency In Practice</a>, which I thoroughly recommend.</p> <p>Collections.synchronizedMap makes sense really only if you need to wrap up a map with some other characteristics, perhaps some sort of ordered map, like a TreeMap.</p> http://stackoverflow.com/questions/473685/does-it-help-gc-to-null-local-variables-in-java/503714#503714 10 Answer by Bill Michell for Does it help GC to null local variables in Java Bill Michell 2009-02-02T16:00:00Z 2009-02-03T16:02:40Z <p><a href="http://java.sun.com/docs/books/performance/1st_edition/html/JPAppGC.fm.html" rel="nofollow">http://java.sun.com/docs/books/performance/1st_edition/html/JPAppGC.fm.html</a> describes a situation where nulling a local variable which dropped out of scope actually had an effect on the GC.</p> <p>However, the paper refers to a very old version of java. As mentioned in <a href="http://stackoverflow.com/questions/271613/are-invisible-references-still-a-problem-in-recent-jvms">http://stackoverflow.com/questions/271613/are-invisible-references-still-a-problem-in-recent-jvms</a>, this no longer affects current JVM implementations.</p> http://stackoverflow.com/questions/507263/xslt-grouping/507540#507540 0 Answer by Bill Michell for XSLT Grouping Bill Michell 2009-02-03T15:27:43Z 2009-02-03T15:27:43Z <p><a href="http://www.xml.com/pub/a/2003/11/05/tr.html" rel="nofollow">http://www.xml.com/pub/a/2003/11/05/tr.html</a> shows a slightly less ugly way of doing this using XSLT 2.0. The key element is this one:</p> <p><code>&lt;xsl:for-each-group select="*" group-ending-with="*[position() mod 3 = 0]"&gt;</code></p> http://stackoverflow.com/questions/473379/locking-a-file-while-copying-using-commons-io/503737#503737 3 Answer by Bill Michell for Locking a file while copying using Commons IO Bill Michell 2009-02-02T16:05:16Z 2009-02-03T15:05:04Z <p><a href="http://java.sun.com/javase/6/docs/api/java/nio/channels/FileChannel.html" rel="nofollow">java.nio.channels.FileChannel</a> will allow you to acquire a <a href="http://java.sun.com/javase/6/docs/api/java/nio/channels/FileLock.html" rel="nofollow">FileLock</a> on a file, using a method native to the underlying file system, assuming such functionality is supported.</p> <p>This lock operates across processes on the machine, even non-java ones. (In fact, the lock is held on behalf of the specific JVM instance, so is not suitable for managing contention between multiple threads in a process, or multiple processes in the same JVM).</p> <p>There are lots of caveats here, but it is worth investigating if you are working on Windows.</p> <p>From the javadoc:</p> <blockquote> <p>This file-locking API is intended to map directly to the native locking facility of the underlying operating system. Thus the locks held on a file should be visible to all programs that have access to the file, regardless of the language in which those programs are written.</p> <p>Whether or not a lock actually prevents another program from accessing the content of the locked region is system-dependent and therefore unspecified. The native file-locking facilities of some systems are merely advisory, meaning that programs must cooperatively observe a known locking protocol in order to guarantee data integrity. On other systems native file locks are mandatory, meaning that if one program locks a region of a file then other programs are actually prevented from accessing that region in a way that would violate the lock. On yet other systems, whether native file locks are advisory or mandatory is configurable on a per-file basis. To ensure consistent and correct behavior across platforms, it is strongly recommended that the locks provided by this API be used as if they were advisory locks.</p> <p>On some systems, acquiring a mandatory lock on a region of a file prevents that region from being mapped into memory, and vice versa. Programs that combine locking and mapping should be prepared for this combination to fail.</p> <p>On some systems, closing a channel releases all locks held by the Java virtual machine on the underlying file regardless of whether the locks were acquired via that channel or via another channel open on the same file. It is strongly recommended that, within a program, a unique channel be used to acquire all locks on any given file.</p> <p>Some network filesystems permit file locking to be used with memory-mapped files only when the locked regions are page-aligned and a whole multiple of the underlying hardware's page size. Some network filesystems do not implement file locks on regions that extend past a certain position, often 230 or 231. In general, great care should be taken when locking files that reside on network filesystems.`</p> </blockquote> http://stackoverflow.com/questions/502913/why-xslt-creats-a-new-table-but-not-uses-the-one-of-the-template/503405#503405 0 Answer by Bill Michell for Why xslt creats a new table but not uses the one of the template Bill Michell 2009-02-02T14:39:18Z 2009-02-02T14:39:18Z <p>It looks like you are processing stuff in your "/" template, then processing it all again in the "Root" template, since the "/" template explicitly appklies the Root template as well.</p> <p>Try deleting the definition of the "/" template and just doing all the work in the template for "Root"</p> http://stackoverflow.com/questions/75014/detecting-concurrent-modifications/82025#82025 3 Answer by Bill Michell for Detecting concurrent modifications? Bill Michell 2008-09-17T11:04:26Z 2009-02-02T13:39:27Z <p>Your original question seems to be asking for an iterator that sees live updates to the underlying collection while remaining thread-safe. This is an incredibly expensive problem to solve in the general case, which is why none of the standard collection classes do it.</p> <p>There are lots of ways of achieving partial solutions to the problem, and in your application, one of those may be sufficient.</p> <p>Jason gives <a href="http://stackoverflow.com/questions/75014/detecting-concurrent-modifications#75048">a specific way to achieve thread safety, and to avoid throwing a ConcurrentModificationException</a>, but only at the expense of liveness.</p> <p>Javamann mentions <a href="http://stackoverflow.com/questions/75014/detecting-concurrent-modifications#75196">two specific classes</a> in the <code>java.util.concurrent</code> package that solve the same problem in a lock-free way, where scalability is critical. These only shipped with Java 5, but there have been various projects that backport the functionality of the package into earlier Java versions, including <a href="http://backport-jsr166.sourceforge.net/" rel="nofollow">this one</a>, though they won't have such good performance in earlier JREs.</p> <p>If you are already using some of the Apache Commons libraries, then as jacekfoo <a href="http://stackoverflow.com/questions/75014/detecting-concurrent-modifications#75205">points out</a>, the <a href="http://commons.apache.org/collections/" rel="nofollow">apache collections framework</a> contains some helpful classes.</p> <p>You might also consider looking at the <a href="http://www.devx.com/Java/Article/36183" rel="nofollow">Google collections framework</a>.</p> http://stackoverflow.com/questions/1601575/how-to-share-files-in-a-depot/1601681#1601681 Comment by Bill Michell on How to share files in a depot Bill Michell 2009-10-22T11:48:11Z 2009-10-22T11:48:11Z No better option - but branching in Perforce is well-handled, so having the project branch the correct revision of the common code into its own area works well. http://stackoverflow.com/questions/1519958/should-i-still-code-to-the-interface-even-if-i-am-only-ever-going-to-have-one-imp/1519977#1519977 Comment by Bill Michell on Should I still code to the interface even if I am ONLY EVER going to have ONE implementation? Bill Michell 2009-10-05T13:31:37Z 2009-10-05T13:31:37Z Agreed. An internal class with a single implementation doesn't need an interface. The interface <i>might</i> be interesting if it forms part of an external API - so people using the interface in ways you haven't predicted aren't forced to extend your implementation... http://stackoverflow.com/questions/1476345/migrate-from-perforce-to-subversion Comment by Bill Michell on Migrate from Perforce to Subversion Bill Michell 2009-10-02T12:18:35Z 2009-10-02T12:18:35Z Not an answer, but a comment: are you really certain that porting to SVN would be better than implementing Perforce in the company you are working for? Yes, Perforce costs money, but there are benefits too, particularly in the area of support for merging changes between branches. http://stackoverflow.com/questions/1378310/performance-concurrenthashmap-vs-hashmap/1378386#1378386 Comment by Bill Michell on Performance ConcurrentHashmap vs HashMap Bill Michell 2009-09-04T12:17:30Z 2009-09-04T12:17:30Z I don't think current implementations ever lock on a get(), but they certainly access volatile variables. http://stackoverflow.com/questions/1376560/java-library-to-spell-out-numbers-in-localized-fashion/1377297#1377297 Comment by Bill Michell on Java library to "spell out" numbers in localized fashion Bill Michell 2009-09-04T09:14:55Z 2009-09-04T09:14:55Z I note that support for i18n was also one of the requirements. While writing your own converter for a single Locale might be reasonable, much better to somehow crowdsource the code for multiple Locales, I would have thought. http://stackoverflow.com/questions/1069343/static-method-in-java/1069375#1069375 Comment by Bill Michell on Static method in Java Bill Michell 2009-07-01T15:22:13Z 2009-07-01T15:22:13Z Yes, at the very least the implementation should be switched to a ConcurrentHashMap - but even that won't fix the other potential issues. http://stackoverflow.com/questions/1035765/how-do-i-start-optimising-my-java-code-cpu-is-at-100/1035866#1035866 Comment by Bill Michell on How do I start optimising my Java code? - CPU is at 100% Bill Michell 2009-06-24T08:57:20Z 2009-06-24T08:57:20Z A decent profiler will highlight &quot;hot spots&quot; in the code, and allow you to follow the call traces upwards, showing you which methods are calling the hot methods. You can do all of this manually, too, but finding a good profiler is well worth the time invested in the investigation. http://stackoverflow.com/questions/994752/java-exit-code-meaning/994758#994758 Comment by Bill Michell on Java exit code meaning Bill Michell 2009-06-15T10:28:25Z 2009-06-15T10:28:25Z By convention, positive numbers tend to indicate that the program couldn't do exactly what it was that you asked it to do, or that something unusual happened while it was trying to do it. However this isn't universally true. A program can use exit codes to indicate whatever they want them to mean. So a program could offer a list of choices and set the exit code to indicate which choice was selected. Exit code 10 could indicate that the user selected the 10th (or even 11th) option... http://stackoverflow.com/questions/995255/why-is-multiple-inheritance-not-allowed-in-java-or-c/995268#995268 Comment by Bill Michell on Why is Multiple Inheritance not allowed in Java or C#? Bill Michell 2009-06-15T10:25:07Z 2009-06-15T10:25:07Z Modern design tends to favour composition over inheritance in all but the simplest cases. Multiple inheritance would never have counted as a simple case. With composition, you have precise control over what your class does when there are diamond problems such as this... http://stackoverflow.com/questions/987219/max-amount-of-memory-per-java-process-in-windows/987384#987384 Comment by Bill Michell on Max amount of memory per java process in windows? Bill Michell 2009-06-12T16:02:26Z 2009-06-12T16:02:26Z You can't actually allocate all of that to the heap in a Java process. The most I have ever successfully allocated is 1400M, and that was only ever on a single box - I couldn't replicate the feat anywhere else! http://stackoverflow.com/questions/985796/how-to-determine-a-proper-serial-version-id Comment by Bill Michell on How to determine a proper serial version ID? Bill Michell 2009-06-12T09:58:28Z 2009-06-12T09:58:28Z You can start at 1, as long as you remember to increment it manually any time it needs to change. Or you can let your IDE or even your JRE generate it for you. The trick is to ensure it changes precisely every time it needs to, and no more frequently than that. IDE generation is a reasonable compromise, but a check-in trigger in your SCM system would be even better... http://stackoverflow.com/questions/963492/in-log4j-does-checking-isdebugenabled-before-logging-improve-performance/963681#963681 Comment by Bill Michell on In log4j, does checking isDebugEnabled before logging improve performance? Bill Michell 2009-06-08T09:06:45Z 2009-06-08T09:06:45Z log5j extends log4j in much the same way as slf4j http://stackoverflow.com/questions/11831/singletons-good-design-or-a-crutch/71189#71189 Comment by Bill Michell on Singletons: good design or a crutch? Bill Michell 2009-06-05T14:22:23Z 2009-06-05T14:22:23Z Anyone care to share the reason for the down-votes? http://stackoverflow.com/questions/938683/java-performance-tips/938704#938704 Comment by Bill Michell on Java performance tips Bill Michell 2009-06-02T11:04:35Z 2009-06-02T11:04:35Z A profiler will tell you if object creation is a bottleneck. Integer.valueOf(int) is worth using instead of new Integer(int), for example, but this is a rare case. Inappropriate caching of objects, leading to them surviving long enough to be promoted out of Eden space, will result in a performance hit. http://stackoverflow.com/questions/925191/java-ntp-client Comment by Bill Michell on Java NTP client Bill Michell 2009-06-01T13:10:53Z 2009-06-01T13:10:53Z Can you not submit a patch to the Apache Commons library?