User ReneS - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T02:56:21Z http://stackoverflow.com/feeds/user/33229 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1791073/java-i-o-over-an-nfs-mount/1791598#1791598 1 Answer by ReneS for Java I/O over an NFS mount ReneS 2009-11-24T17:20:52Z 2009-11-24T19:11:39Z <p>Some information to NFS in general. Depending on your NFS settings, locks might not work at all and a lot of big NFS installations are tuned for read performance, therefore new data might turn up later than expected, due to caching effects. </p> <p>I have seen effects where you created a file, added data (this was seen on another machine), but all data after that appeared with a 30 sec delay.</p> <p>Best solution by the way is a rotating file schema. So that the last one is assumed to be written and the one before was safely written and can be read. I would not work on a single file and use it as a "pipe". </p> <p>You can alternatively use an empty file that is written after the large file was written and closed properly. So if the small guys is there, the big guy was definitively done and can be read.</p> http://stackoverflow.com/questions/1759135/unnecessary-java-context-switches/1760312#1760312 2 Answer by ReneS for Unnecessary Java context switches ReneS 2009-11-19T01:15:32Z 2009-11-19T01:28:14Z <p>Green threads are gone (maybe Solaris supports it still but I doubt that). Additionally Java does not switch threads, the OS does that. The only thing Java does is signalling to the OS, that a thread is idle/waits/blocks by using OS functions. So if your program hits any synchronisation points, does Thread.wait/sleep, it will signal, that it does not need the cpu anymore. </p> <p>Besides that, the OS maintains time slices and will take away the cpu from a thread, even so it could still run, when other threads wait for the cpu.</p> <p>Can you publish some more code here?</p> http://stackoverflow.com/questions/1696028/can-sun-jvm-handle-gigantic-heap-sizes-without-problems-and-how/1758423#1758423 0 Answer by ReneS for Can Sun JVM handle gigantic heap sizes without problems, and how? ReneS 2009-11-18T19:24:50Z 2009-11-18T19:24:50Z <p>Only to add some more switches I would use by default: -Xms55g can help to reduce the rampup time because it frees Java from the need to check if it can fall back to the initial size and allows also better internal initial sizing of memory areas.</p> <p>Additionally we made good experiences with NewSize to give you a large young size to get rid of short term garbage: -XX:NewSize=1g Additionally most webapps create a lot of short time garbage that will never survive the request processing. You can even make that bigger. With Xms55g, the VM reserves a large chunk already. Maybe downsizing can help.</p> <p>-Xincgc helps to clean the young generation incrementally and return the cpu often to the user threads.</p> <p>-XX:CMSInitiatingOccupancyFraction=70 If you really fill all that memory, try to start CMS garbage collection earlier.</p> <p>-XX:+CMSIncrementalMode puts the CMS into incremental mode to return the cpu to the user threads more often.</p> <p>Attach to the process with <code>jstat -gc -h 10 &lt;pid&gt; 1s</code> and watch the GC working.</p> <p>Will you really fill up the memory? I assume that 64cpus for request processing might even be able to work with less memory. What do you store in there?</p> http://stackoverflow.com/questions/1757363/java-hashmap-performance-optimization-alternative/1757522#1757522 0 Answer by ReneS for Java HashMap performance optimization / alternative ReneS 2009-11-18T17:07:12Z 2009-11-18T17:07:12Z <p>Allocate a large map in the beginning. If you know it will have 26 million entries and you have the memory for it, do a <code>new HashMap(30000000)</code>.</p> <p>Are you sure, you have enough memory for 26 million entries with 26 million keys and values? This sounds like a lot memory to me. Are you sure that the garbage collection is doing still fine at your 2 to 3 million mark? I could imagine that as a bottleneck.</p> http://stackoverflow.com/questions/996263/firefox-crashes-rendering-large-html-table-20-000-rows/1125359#1125359 0 Answer by ReneS for Firefox crashes rendering large html table (20,000+ rows) ReneS 2009-07-14T13:24:55Z 2009-07-14T13:24:55Z <p>I have the same issue. Basically Firefox scrolls very slow when the table is shown (30 rows and about 50 columns). As soon as the table is not visible anymore, the browser scrolls fast again. So I guess it is a display rendering or update problem.</p> http://stackoverflow.com/questions/951569/exclude-code-from-code-coverage-with-cobertura 2 Exclude code from code coverage with Cobertura ReneS 2009-06-04T16:15:08Z 2009-06-04T16:41:29Z <p>Is there a way to exclude code from inclusion into Cobertura coverage reports? We have some methods that should not be include in the coverage report and therefore not drive down the coverage numbers.</p> <p>I know that Clover has such a functionality, but I have not found anything similar for Cobertura.</p> http://stackoverflow.com/questions/944581/can-htmlunit-enter-data-in-password-fields/944873#944873 0 Answer by ReneS for Can HTMLUnit enter data in password fields? ReneS 2009-06-03T13:50:30Z 2009-06-03T15:55:17Z <p>The password field is not encrypted. It is just not rendered as plain text in the browser (dots or stars instead). You can make it visible with a tool, such as Webdeveloper toolbar for Firefox. So this should not be the problem. I am using HtmlUnit myself and it works.</p> http://stackoverflow.com/questions/796509/how-to-prioritize-bugs/941798#941798 0 Answer by ReneS for How to prioritize bugs? ReneS 2009-06-02T20:42:47Z 2009-06-02T20:42:47Z <p>Some stuff we used before. We split the defect rating into priority and severity.</p> <p><strong>Severity</strong> (set by submitter during submission of defect)</p> <ul> <li>Highest (5): Data loss, hardware damage possible, or a security-related failure </li> <li>High (4): Loss of functionality without any reasonable workaround </li> <li>Medium (3): Loss of functionality with a reasonable workaround </li> <li>Low (2): Partial loss of a function or a feature set (feature still hits the design requirements) </li> <li>Lowest (1): A cosmetic error</li> </ul> <p><strong>Priority</strong> (adjusted by development, management and QA during defect evaluation)</p> <ul> <li>Highest (5): The system is practically unusable with this defect.</li> <li>High (4): The defect will have a serious impact on the company’s ability to sell and maintain this system.</li> <li>Medium (3): The company will lose some money if this defect is in the system, but it might be more important to meet the schedule. Fix after release.</li> <li>Low (2): Do not delay the release, but do fix this problem afterwards.</li> <li>Lowest (1): Fix as time and resources allow.</li> </ul> <p>Both numbers together create a risk priority number (RPN). Simply multiply severity with priority. Higher result means higher risk. 25 defines the ultimate defect bomb. 1 can be done during idle time or if someone is bored and needs something to do.</p> <p>First goal: Defects with a rating of highest or high of any kind should be fixed before release. Second goal: Defects with RPN > 8 should be fixed before releasing the product.</p> <p><hr /></p> <p>This is of course a little bit artificial but helps to give all parties (Support, QA/Test, Engineering, and Product Managers) a tool to set priorities without blowing away the opinion of other side.</p> http://stackoverflow.com/questions/941512/whats-the-difference-between-a-bug-tracking-and-an-issue-tracking-system/941739#941739 0 Answer by ReneS for What's the difference between a bug tracking and an issue tracking system? ReneS 2009-06-02T20:29:53Z 2009-06-02T20:29:53Z <p>Well... there is not difference besides the fact, that an issue is more than just a bug. It can be a task, a new feature, or simply an improvement. A bug is mostly seen as incorrect system behavior, while an issue has a broader definition. beyond just "it does not work"...</p> http://stackoverflow.com/questions/862176/how-to-ensure-jvm-starts-with-value-of-xms/912966#912966 2 Answer by ReneS for How to ensure JVM starts with value of Xms ReneS 2009-05-26T21:56:02Z 2009-05-26T21:56:02Z <p>If I am not mistaken, Java tries to get the reservation for the memory from the OS. So if you ask for 3 GB as Xms, Java will ask the OS, if this is available but not start with all the memory right away... it might even reserve it (not allocate it). But these are details.</p> <p>Normally, the JVM runs up to the Xms size before it starts serious old generation garbage collection. Young generation GC runs all the time. Normally GC is only noticeable when old gen GC is running and the VM is in between Xms and Xmx or, in case you set it to the same value, hit roughly Xmx. </p> <p>If you need a lot of memory for short lived objects, increase that memory area by setting the young area to... let's say 1 GB <strong>-XX:NewSize=1g</strong> because it is costly to move the "trash" from the young "buckets" into the old gen. Because in case it has not turned into real trash yet, the JVM checks for garbage, does not find any, copies it between the survivor spaces, and finally moves into the old gen. So try to suppress the check for the garbage in the young gen, when you know that you do not have any and postpone this somehow...</p> <p>Give it a try!</p> http://stackoverflow.com/questions/902660/healthy-garbage-collection-metrics/912940#912940 0 Answer by ReneS for healthy garbage collection metrics? ReneS 2009-05-26T21:46:53Z 2009-05-26T21:46:53Z <p>I agree that up to 10% is usually fine for GC time. In case you have an old gen problem, try to add the -<strong>XX:NewSize</strong>=300m parameter, where you can increase the young generation. This helps to avoid big heaps of used objects (garbage) in the old area. Especially when you just have a lot of local objects and you do not retain anything on purpose for longer.</p> http://stackoverflow.com/questions/632716/how-to-fix-the-size-of-a-java-heap/881843#881843 0 Answer by ReneS for How to fix the size of a Java heap ReneS 2009-05-19T09:43:28Z 2009-05-19T09:43:28Z <p>I guess it is just too small. Try something higher, like 16m or 64m. Additionally the internal and the external size are different shoes. The heap will not be full all the time, so a less than Xmx is always possible, even a less than Xms in case the program just has been started. But externally, you will see that Xms amount of memory has been allocated.</p> http://stackoverflow.com/questions/875695/why-does-java-code-generated-to-perform-an-operation-run-more-slowly-than-an-int/876719#876719 1 Answer by ReneS for Why does Java code generated to perform an operation run more slowly than an "interpreter loop"? ReneS 2009-05-18T08:19:54Z 2009-05-18T08:19:54Z <p>There is a JVM settings that controls how fast code should be compiled -XX:CompileThreshold=10000</p> <blockquote> <p>Number of method invocations/branches before compiling [-client: 1,500]</p> </blockquote> <p>I do not know if this will help, because in your example, the size seem to play a vital role. </p> http://stackoverflow.com/questions/194395/how-do-i-discover-what-is-in-the-permanent-generation/862482#862482 0 Answer by ReneS for How do I discover what is in the permanent generation ReneS 2009-05-14T09:48:52Z 2009-05-14T09:48:52Z <p>Do you have a specific problem to solve? The use of String.intern() is one of the typical causes for permgen problems. Additionally projects with a lot of classes also have permgen problems.</p> <p>I do not know how to get into the permgen and see what it is there...</p> http://stackoverflow.com/questions/860676/random-crashes-of-java-vm-in-concurrentgcthread 0 Random crashes of Java VM in ConcurrentGCThread ReneS 2009-05-13T22:08:26Z 2009-05-14T05:21:54Z <p>We have problems with JVMs running internet applications under changing load. This problem comes and goes. One day we see three VMs dying and after that, there is nothing for a week or two. We have not found a pattern yet, found nothing to reproduce or cause it. Also a search in the Sun bug database did not help.</p> <p>We tried a suggested workaround (-XX:-CMSPermGenPrecleaningEnabled -XX:-CMSConcurrentMTEnabled) from <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6354939" rel="nofollow">http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6354939</a> Did not help. It seem to just change the thread that causes it... or at least make us believe so.</p> <p>Also an upgrade to 1.6.0_13 did not help and the bug request to Sun never returned a response.</p> <p>So my question is, has anyone seen that or has an idea what to look for? Could this be related to OS libraries?</p> <p>Edited: OS is Linux, OpenSuse running on AMD cpus (Linux 2.6.18.8-0.1-dw #3 SMP Thu Mar 15 01:21:48 GMT 2007 x86_64 x86_64 x86_64 GNU/Linux)</p> <pre><code># # An unexpected error has been detected by Java Runtime Environment: # # SIGSEGV (0xb) at pc=0x062c75f5, pid=6667, tid=1090374560 # # Java VM: Java HotSpot(TM) Server VM (11.2-b01 mixed mode linux-x86) # Problematic frame: # V [libjvm.so+0x2c75f5] # # If you would like to submit a bug report, please visit: # http://java.sun.com/webapps/bugreport/crash.jsp # --------------- T H R E A D --------------- Current thread (0x081ddc00): ConcurrentGCThread [stack: 0x40f5c000,0x40fdd000] [id=6679] siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0x0000000c Registers: EAX=0x00000000, EBX=0x00000008, ECX=0x0bf5e510, EDX=0x42d6dcb0 ESP=0x40fdc150, EBP=0x40fdc168, ESI=0x40fdc200, EDI=0xa19e9640 EIP=0x062c75f5, CR2=0x0000000c, EFLAGS=0x00210206 Top of Stack: (sp=0x40fdc150) 0x40fdc150: 40fdc200 71c70000 0815a748 0815a704 0x40fdc160: a19e9640 40fdc200 40fdc198 062c74cb 0x40fdc170: 40fdc200 a19e9640 0bf5e510 0bf5e510 0x40fdc180: 080ea6f0 40fdc200 00000010 a19e9640 0x40fdc190: ad38a000 40fdc200 40fdc1c8 0629efaa 0x40fdc1a0: 40fdc200 a19e9640 00000100 00000100 0x40fdc1b0: 0815ab00 40fdc200 40fdc2b8 40fdc200 0x40fdc1c0: 080ea5f0 0815a638 40fdc2b8 062c2905 Instructions: (pc=0x062c75f5) 0x062c75e5: 53 83 ec 0c 8b 7d 0c 8b 75 08 8b 47 04 8d 58 08 0x062c75f5: 8b 53 04 89 d1 c1 f9 02 85 d2 7e 6f b8 04 00 00 Stack: [0x40f5c000,0x40fdd000], sp=0x40fdc150, free space=512k Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) V [libjvm.so+0x2c75f5] V [libjvm.so+0x2c74cb] V [libjvm.so+0x29efaa] V [libjvm.so+0x2c2905] V [libjvm.so+0x2bb461] V [libjvm.so+0x2c9ef5] V [libjvm.so+0x506929] C [libpthread.so.0+0x52ab] </code></pre> http://stackoverflow.com/questions/785091/consistency-of-hashcode-on-a-java-string/785609#785609 6 Answer by ReneS for Consistency of hashCode() on a Java string ReneS 2009-04-24T12:17:35Z 2009-04-24T12:17:35Z <p>I found something about JDK 1.0 and 1.1 and >= 1.2:</p> <blockquote> <p>In JDK 1.0.x and 1.1.x the hashCode function for long Strings worked by sampling every nth character. This pretty well guaranteed you would have many Strings hashing to the same value, thus slowing down Hashtable lookup. In JDK 1.2 the function has been improved to multiply the result so far by 31 then add the next character in sequence. This is a little slower, but is much better at avoiding collisions. Source: <a href="http://mindprod.com/jgloss/hashcode.html" rel="nofollow">http://mindprod.com/jgloss/hashcode.html</a></p> </blockquote> <p>Something different, because you seem to need a number: How about using CRC32 or MD5 instead of hashcode and you are good to go - no discussions and no worries at all...</p> http://stackoverflow.com/questions/785091/consistency-of-hashcode-on-a-java-string/785447#785447 2 Answer by ReneS for Consistency of hashCode() on a Java string ReneS 2009-04-24T11:21:42Z 2009-04-24T11:21:42Z <p>Just to answer your question and not to continue any discussions. The Apache Harmony JDK implementation seems to use a different algorithm, at least it looks totally different:</p> <p><strong>Sun JDK</strong></p> <pre><code> public int hashCode() { int h = hash; if (h == 0) { int off = offset; char val[] = value; int len = count; for (int i = 0; i &lt; len; i++) { h = 31*h + val[off++]; } hash = h; } return h; } </code></pre> <p><strong>Apache Harmony</strong></p> <pre><code> public int hashCode() { if (hashCode == 0) { int hash = 0, multiplier = 1; for (int i = offset + count - 1; i &gt;= offset; i--) { hash += value[i] * multiplier; int shifted = multiplier &lt;&lt; 5; multiplier = shifted - multiplier; } hashCode = hash; } return hashCode; } </code></pre> <p>Feel free to check it yourself...</p> http://stackoverflow.com/questions/748940/does-the-sun-jvm-slow-down-when-more-memory-is-allocated-via-xmx/750321#750321 0 Answer by ReneS for Does the Sun JVM slow down when more memory is allocated via -Xmx? ReneS 2009-04-15T04:36:26Z 2009-04-15T04:36:26Z <p>According to my experience, it does not slow down BUT the JVM tries to cut back to Xms all the time and try to stay at the lower boundary or close to. So if you can effort it, bump Xms as well. Sun is recommending both at the same size. Add some -XX:NewSize=512m (just a made up number) to avoid the costly pile up of old data in the old generation with leads to longer/heavier GCs on the way. We are running our web app with 700 MB NewSize because most data is short-lived.</p> <p>So, bottom line: I do not expect a slow down, but put your more of memory to work. Set a larger new size area and set Xms to Xmx to lower the stress on the GC, because it does not need to try to cut back to Xms limits...</p> http://stackoverflow.com/questions/473685/does-it-help-gc-to-null-local-variables-in-java/716391#716391 0 Answer by ReneS for Does it help GC to null local variables in Java ReneS 2009-04-04T02:39:20Z 2009-04-04T02:39:20Z <p>If you don't need large objects in your local scope anymore, you can give the JVM a hint and set the reference NULL. </p> <pre><code>public void foobar() { List&lt;SomeObject&gt; dataList = new ArrayList&lt;SomeObject&gt;(); // heavy computation here where objects are added to dataList // and the list grows, maybe you will sort the list and // you just need the first element... SomeObject smallest = dataList.get(0); // more heavy computation will follow, where dataList is never used again // so give the JVM a hint to drop it on its on discretion dataList = null; // ok, do your stuff other heavy stuff here... maybe you even need the // memory that was occupied by dataList before... // end of game and the JVM will take care of everything, no hints needed } </code></pre> <p>But it does not make sense before the return, because this is done by the JVM automatically. So I agree with all postings before.</p> http://stackoverflow.com/questions/713161/strange-garbage-collection-behaviour-with-websphere-portal-server/713308#713308 0 Answer by ReneS for Strange garbage collection behaviour with Websphere Portal Server ReneS 2009-04-03T10:00:10Z 2009-04-03T10:00:10Z <p>Only a hint... once we had a project that suffered major GC problems (Websphere and IBM JDK) due to heap fragmentation. At the end, we added a JDK switch to force heap compaction. </p> <p>The Sun JDK does not tent to have a fragmented heap, but the IBM JDK does due to the different memory/GC handling.</p> <p>Just give it a try... I cannot remember the magic switch.</p> http://stackoverflow.com/questions/154309/how-do-i-make-sure-my-objects-get-garbage-collected/699740#699740 1 Answer by ReneS for How do I make sure my objects get garbage collected? ReneS 2009-03-31T01:51:06Z 2009-03-31T01:51:06Z <p>Some suggestions:</p> <ul> <li>Unlimited maps used as caches, especially when static</li> <li>ThreadLocals in server apps, because the threads usually do not die, so the ThreadLocal is not freed</li> <li>Interning strings (Strings.intern()), which results in a pile of Strings in the PermSpace</li> </ul> http://stackoverflow.com/questions/690805/any-java-caches-that-can-limit-memory-usage-of-in-memory-cache-not-just-instance/695666#695666 0 Answer by ReneS for Any Java caches that can limit memory usage of in-memory cache, not just instance count? ReneS 2009-03-30T00:03:47Z 2009-03-30T00:03:47Z <p>How about using a simple LinkedHashMap with LRU algorithm enabled and put all data with a SoftReference in it... such as cache.out(key, new SoftReference(value)) ??</p> <p>This would limit your cache to the amount of available memory but not kill the rest of your programm, because Java removes the soft references when there is a memory demand... not all.. the oldest first... usually. If you add a reference queue to your implementation, you can also remove the stall entries (only key, no value) from the map.</p> <p>This would free you from calculating the size of the entries and keeping track of the sum.</p> http://stackoverflow.com/questions/694846/how-to-use-ant/695654#695654 0 Answer by ReneS for How to use Ant? ReneS 2009-03-29T23:56:25Z 2009-03-29T23:56:25Z <p>This is from the ANT documentation and explains it pretty well.</p> <blockquote> <p>Why another build tool when there is already make, gnumake, nmake, jam, and others? Because all those tools have limitations that Ant's original author couldn't live with when developing software across multiple platforms. Make-like tools are inherently shell-based: they evaluate a set of dependencies, then execute commands not unlike what you would issue on a shell. This means that you can easily extend these tools by using or writing any program for the OS that you are working on; however, this also means that you limit yourself to the OS, or at least the OS type, such as Unix, that you are working on.</p> <p>Makefiles are inherently evil as well. Anybody who has worked on them for any time has run into the dreaded tab problem. "Is my command not executing because I have a space in front of my tab?!!" said the original author of Ant way too many times. Tools like Jam took care of this to a great degree, but still have yet another format to use and remember.</p> <p>Ant is different. Instead of a model where it is extended with shell-based commands, Ant is extended using Java classes. Instead of writing shell commands, the configuration files are XML-based, calling out a target tree where various tasks get executed. Each task is run by an object that implements a particular Task interface.</p> <p>Granted, this removes some of the expressive power that is inherent in being able to construct a shell command such as <code>find . -name foo -exec rm {}</code>, but it gives you the ability to be cross-platform--to work anywhere and everywhere. And hey, if you really need to execute a shell command, Ant has an task that allows different commands to be executed based on the OS it is executing on.</p> </blockquote> http://stackoverflow.com/questions/692677/atomicintegerarray-vs-atomicinteger/692827#692827 3 Answer by ReneS for AtomicIntegerArray vs AtomicInteger[] ReneS 2009-03-28T14:23:10Z 2009-03-28T14:23:10Z <ul> <li>AtomicInteger[] is an array of thread safe integers.</li> <li>AtomicIntegerArray is a thread-safe array of integers.</li> </ul> http://stackoverflow.com/questions/691647/why-does-my-xpath-expression-in-java-return-too-many-children/691891#691891 0 Answer by ReneS for Why does my XPath expression in Java return too many children? ReneS 2009-03-28T00:22:51Z 2009-03-28T00:22:51Z <p>I am not sure but shouldn't <strong>/config/a/b</strong> just return <strong>b</strong>? <strong>/config/a/b/param</strong> should return the two <strong>param</strong> nodes...</p> <p>Could the view on the problem be the problem? Of course you get back the resulting node AND all its children. So you just have to look at the first element and not at its children.</p> <p>But I can be totally wrong, because I am usually just use Xpath to navigate on DOM trees (HtmlUnit).</p> http://stackoverflow.com/questions/637324/write-once-read-numerous-map-in-java/690817#690817 0 Answer by ReneS for Write-Once + Read-Numerous Map in Java? ReneS 2009-03-27T17:54:42Z 2009-03-27T17:54:42Z <p>If you strictly write in the beginning, before readers start, so synchronization and sharing across threads are not issues... HashMap is your friend. When you are not sure about that: ConcurrentHashMap.</p> <p>Both implementations are part of the JDK.</p> http://stackoverflow.com/questions/671049/how-do-you-kill-a-thread-in-java/672175#672175 0 Answer by ReneS for How do you kill a thread in Java? ReneS 2009-03-23T03:49:42Z 2009-03-23T03:49:42Z <p>Just as a side hint: A variable as flag only works, when the thread runs and it is not stuck. Thread.interrupt() should free the thread out of most waiting conditions (wait, sleep, network read, and so on). Therefore you should never never catch the InterruptedException to make this work.</p> http://stackoverflow.com/questions/641462/can-using-too-many-static-variables-cause-a-memory-leak-in-java/660874#660874 0 Answer by ReneS for Can using too many static variables cause a memory leak in Java? ReneS 2009-03-19T02:35:00Z 2009-03-19T02:35:00Z <p>If you have a static hashmap and you add data to it... the data will never disappear and you have a leak - in case you do not need the data anymore. If you need the data, it is not a leak, but a huge pile of memory hanging around.</p> http://stackoverflow.com/questions/658644/string-indexed-collection-in-java/659095#659095 0 Answer by ReneS for String indexed collection in Java ReneS 2009-03-18T16:42:51Z 2009-03-18T16:42:51Z <p>The map access does not do unboxing for the lookup, only the later access to the result makes it slow.</p> <p>I suggest to introduce a small wrapper with a getter for the int, such as SimpleInt. It holds the int without conversion. The constructor is not expensive and overall is is cheaper than an Integer.</p> <pre><code>public SimpleInt { private final int data; public SimpleInt(int i) { data = i; } // getter here .... } </code></pre> http://stackoverflow.com/questions/653012/is-this-scenario-suitable-for-weakreferences/653041#653041 0 Answer by ReneS for Is this scenario suitable for WeakReferences ? ReneS 2009-03-17T04:41:49Z 2009-03-17T04:41:49Z <p>I am not sure if the WeakMap is the right thing here. If you do not hold strong references anywhere in your application, the data in the map will disappear nearly immediately, because nobody is referencing it.</p> <p>A weak map is a nice thing, if you want to find things again, that are still in use elsewhere and you only want to have one instance of it.</p> <p>But I might not get your data setup right... to be honest.</p> http://stackoverflow.com/questions/1791073/java-i-o-over-an-nfs-mount/1791278#1791278 Comment by ReneS on Java I/O over an NFS mount ReneS 2009-11-24T19:12:48Z 2009-11-24T19:12:48Z Locks on NFS will only work if supported and activated. http://stackoverflow.com/questions/1759135/unnecessary-java-context-switches Comment by ReneS on Unnecessary Java context switches ReneS 2009-11-23T02:03:14Z 2009-11-23T02:03:14Z Any news on that? Did you find a solution? http://stackoverflow.com/questions/1759135/unnecessary-java-context-switches Comment by ReneS on Unnecessary Java context switches ReneS 2009-11-19T19:04:04Z 2009-11-19T19:04:04Z What JDK are you using? Try to run the same under Linux server... if it runs better, it is XP. http://stackoverflow.com/questions/1759135/unnecessary-java-context-switches/1760312#1760312 Comment by ReneS on Unnecessary Java context switches ReneS 2009-11-19T19:02:51Z 2009-11-19T19:02:51Z Yes, depends on your OS and what mode it is running in. For instance Ubuntu server is running other slices than Ubuntu Desktop. (ask at severfault.com). But try to bind your process to one cpu first and check if it is running better. http://stackoverflow.com/questions/1759135/unnecessary-java-context-switches/1760312#1760312 Comment by ReneS on Unnecessary Java context switches ReneS 2009-11-19T01:29:55Z 2009-11-19T01:29:55Z Just forgot to mention, memory acquisition is always a moment, when the OS might push your thread off the cpu... http://stackoverflow.com/questions/1757363/java-hashmap-performance-optimization-alternative/1757905#1757905 Comment by ReneS on Java HashMap performance optimization / alternative ReneS 2009-11-18T18:04:34Z 2009-11-18T18:04:34Z RAM might be way to small for these kind of maps and arrays, so I already suspected a memory limitation problem. http://stackoverflow.com/questions/1757363/java-hashmap-performance-optimization-alternative Comment by ReneS on Java HashMap performance optimization / alternative ReneS 2009-11-18T17:50:07Z 2009-11-18T17:50:07Z If you have large arrays which start with the same values, the will end up in the same hash bucket. Check out java.lang.String.hashCode() http://stackoverflow.com/questions/1757363/java-hashmap-performance-optimization-alternative Comment by ReneS on Java HashMap performance optimization / alternative ReneS 2009-11-18T17:36:06Z 2009-11-18T17:36:06Z What are your keys? Strings? Integers? http://stackoverflow.com/questions/1757363/java-hashmap-performance-optimization-alternative Comment by ReneS on Java HashMap performance optimization / alternative ReneS 2009-11-18T17:33:58Z 2009-11-18T17:33:58Z If setting the initial capacity decreases performance, I bet on memory problems, not hashmap problems. The initial large array occupies more memory in the beginning and therefore does not permit to insert/create objects earlier. Can you share some server details and memory settings? http://stackoverflow.com/questions/1757363/java-hashmap-performance-optimization-alternative/1757522#1757522 Comment by ReneS on Java HashMap performance optimization / alternative ReneS 2009-11-18T17:08:04Z 2009-11-18T17:08:04Z Oh, another thing. Your hash codes have to be evenly distributed to avoid large linked lists at single positions in the map. http://stackoverflow.com/questions/951569/exclude-code-from-code-coverage-with-cobertura/951670#951670 Comment by ReneS on Exclude code from code coverage with Cobertura ReneS 2009-06-05T10:27:15Z 2009-06-05T10:27:15Z Ok, that confirms, that I have not missed anything. Hope for a hidden feature... well, maybe we get one sooner or later. Thanks! http://stackoverflow.com/questions/944581/can-htmlunit-enter-data-in-password-fields/948843#948843 Comment by ReneS on Can HTMLUnit enter data in password fields? ReneS 2009-06-05T06:43:33Z 2009-06-05T06:43:33Z Please post the url to the defect here, so we can link it together. http://stackoverflow.com/questions/951569/exclude-code-from-code-coverage-with-cobertura/951670#951670 Comment by ReneS on Exclude code from code coverage with Cobertura ReneS 2009-06-05T06:42:28Z 2009-06-05T06:42:28Z Thanks. Is there anything that can be added to the code to exclude a method? Would be easier than a long long list in ANT. Any annotation support? http://stackoverflow.com/questions/944581/can-htmlunit-enter-data-in-password-fields Comment by ReneS on Can HTMLUnit enter data in password fields? ReneS 2009-06-03T15:54:53Z 2009-06-03T15:54:53Z This is my code: loginForm.getInputByName(&quot;frm_login_password&quot;).setValueAttribute(&quot;foo&quot;); Looks the same. Are you sure that this is the problem? http://stackoverflow.com/questions/862176/how-to-ensure-jvm-starts-with-value-of-xms Comment by ReneS on How to ensure JVM starts with value of Xms ReneS 2009-05-27T15:51:01Z 2009-05-27T15:51:01Z The idea I had was, that you are close to swapping and when Java allocates another memory area, the OS has to take care of swapping and compacting.