java Programming Glossary: tuning
Speed tradeoff of Java's -Xms and -Xmx options http://stackoverflow.com/questions/1043817/speed-tradeoff-of-javas-xms-and-xmx-options process and the output of my program java performance tuning jvm arguments share improve this question It depends on..
Tracking down a memory leak / garbage-collection issue in Java. http://stackoverflow.com/questions/1071631/tracking-down-a-memory-leak-garbage-collection-issue-in-java doesnt seem to be working I am left with the voodoo of tuning Garbage Collection blind. What I have tried Profiling and fixing.. combinations of the above. I have also consulted the JVM tuning reference http java.sun.com javase technologies hotspot gc gc_tuning_6.html.. http java.sun.com javase technologies hotspot gc gc_tuning_6.html but can't really find anything explaining this behavior..
How do I optimize for multi-core and multi-CPU computers in Java? http://stackoverflow.com/questions/1223072/how-do-i-optimize-for-multi-core-and-multi-cpu-computers-in-java to physical processors. You do have some options for tuning. For example I found this page which talks about how to tune..
Auto-wiring a List using util schema gives NoSuchBeanDefinitionException http://stackoverflow.com/questions/1363310/auto-wiring-a-list-using-util-schema-gives-nosuchbeandefinitionexception myList . The solution is mentioned in 3.11.3. Fine tuning annotation based autowiring with qualifiers If you intend to..
Hashset vs Treeset http://stackoverflow.com/questions/1463284/hashset-vs-treeset specified by you via it's constructor doesn't offer any tuning parameters for iteration performance offers a few handy methods..
Java - Storing SQL statements in an external file http://stackoverflow.com/questions/1544335/java-storing-sql-statements-in-an-external-file keep them in sync in case database schema changes or for tuning purposes. Here are the requirements The file must be readable..
Java NIO FileChannel versus FileOutputstream performance / usefulness http://stackoverflow.com/questions/1605332/java-nio-filechannel-versus-fileoutputstream-performance-usefulness own experience has been that this buffer size is ripe for tuning. I've settled on 4KB for one part of my application 256KB for..
What GC parameters is a JVM running with? http://stackoverflow.com/questions/1880299/what-gc-parameters-is-a-jvm-running-with with I'm still investigating issues I have with GC tuning see prior question which involves lots of reading and experimentation...
How can I avoid garbage collection delays in Java games? (Best Practices) [closed] http://stackoverflow.com/questions/2484079/how-can-i-avoid-garbage-collection-delays-in-java-games-best-practices in Java games Best Practices closed I'm performance tuning interactive games in Java for the Android platform. Once in..
Thread Dump Analysis Tool / Method [closed] http://stackoverflow.com/questions/3156434/thread-dump-analysis-tool-method ExecuteThread '19' for queue 'weblogic.kernel.Default self tuning ' daemon prio 7 tid 07b06000 nid 108 lwp_id 222813 waiting for.. ExecuteThread '19' for queue 'weblogic.kernel.Default self tuning ' daemon prio 7 tid 07b06000 nid 108 lwp_id 222813 waiting for..
How to deal with “java.lang.OutOfMemoryError: Java heap space” error (64MB heap size) http://stackoverflow.com/questions/37335/how-to-deal-with-java-lang-outofmemoryerror-java-heap-space-error-64mb-heap heap size dynamically that will be great. java jvm heap tuning outofmemoryerror share improve this question Ultimately you..
If profiler is not the answer, what other choices do we have? http://stackoverflow.com/questions/4387895/if-profiler-is-not-the-answer-what-other-choices-do-we-have location . For example here is an example of performance tuning in which a series of performance problems were identified and.. it but to know its location. A phenomenon of performance tuning is that fixing one problem by reducing the time magnifies the.. paper failed to reference my article Dunlavey œPerformance tuning with instruction level cost derived from call stack sampling..
Recurring “PermGen” in Tomcat 6 http://stackoverflow.com/questions/473011/recurring-permgen-in-tomcat-6 use XX MaxPermSize SIZE The following links may be helpful tuning GC this is the 1.5 edition GC FAQ 1.4.2 edition Hotspot VM options..
JVM sending back memory to OS http://stackoverflow.com/questions/675589/jvm-sending-back-memory-to-os use the XX MaxHeapFreeRatio option as described in the tuning guide . If you feel your question is meaningfully different..
Is there a cookbook guide for GC problems? http://stackoverflow.com/questions/6871213/is-there-a-cookbook-guide-for-gc-problems people don't know how to identify the key factors so GC tuning is more like a black art than a science. Not everyone uses a.. have provided some things I have found. As for a cookbook tuning is most likely application specific at this level but it is..
Hibernate, iBatis, Java EE or other Java ORM tool http://stackoverflow.com/questions/716532/hibernate-ibatis-java-ee-or-other-java-orm-tool still need to know about relational models SQL performance tuning of queries and so forth. Whereas Ibatis will simply having you..
Tuning garbage collections for low latency http://stackoverflow.com/questions/2781797/tuning-garbage-collections-for-low-latency garbage collections for low latency I'm looking for arguments..
What is the garbage collector in Java? http://stackoverflow.com/questions/3798424/what-is-the-garbage-collector-in-java
GC overhead limit exceeded http://stackoverflow.com/questions/4371505/gc-overhead-limit-exceeded Java SE 6 HotSpot tm Virtual Machine Garbage Collection Tuning the following Excessive GC Time and OutOfMemoryError The concurrent..
File Streaming in Java http://stackoverflow.com/questions/4728523/file-streaming-in-java That's an interesting benchmark. Articles Tuning Java I O Performance http java.sun.com developer technicalArticles.. java.sun.com developer technicalArticles Programming PerfTuning Simple Sun recommendations but please scroll down and have a..
Is there a cookbook guide for GC problems? http://stackoverflow.com/questions/6871213/is-there-a-cookbook-guide-for-gc-problems question References for various GC information Oracle Tuning Garbage Collection with the 5.0 Java tm Virtual Machine and.. Java SE 6 HotSpot tm Virtual Machine Garbage Collection Tuning IBM Fine Tuning Garbage Collection Extensible Verbose Toolkit.. tm Virtual Machine Garbage Collection Tuning IBM Fine Tuning Garbage Collection Extensible Verbose Toolkit SAP JVM Memory..
Java Memory explained (SUN JVM) http://stackoverflow.com/questions/858250/java-memory-explained-sun-jvm Determining memory usage in Java Java Performance Tuning web site Java World Pick up performance with generational garbage..
Java Garbage Collection Log messages http://stackoverflow.com/questions/895444/java-garbage-collection-log-messages improve this question Most of it is explained in the GC Tuning Guide which you would do well to read anyway . The command line..
|