Aktuelle Änderungen
Printable View
Änderungen
Bearbeiten
JVM > JavaClear Trail
(weitergeleitet von Main.JVM)
JavaTools
JavaEnterpriseEdition
JavaReflection
LetzteInformatikPruefungen
CPlusPlusSprache
CSharpVsJava
LatentTyping
JavaGenerics
VirtualMachine
ProgrammierSprachen
Groovy
Clojure
JavaFX
JavaNio
Versions
Unterschiede zwischen 1.5 und 1.4
Generics
Swing und AWT
Netzwerkprogrammierung
Innere Klassen
Sonst
Server and Client JVM
- http://java.sun.com/j2se/1.3/docs/guide/performance/hotspot.html
- The Java HotSpot Client VM has been specially tuned to reduce application start-up time and memory footprint, making it particulary well suited for client environments.
- The Java HotSpot Server VM is similar to the Java HotSpot Client VM, except that it has been specially tuned to maximize peak operating speed. It is intended for running long-running server applications, for which having the fastest possible operating speed is generally more important than having the fastest possible start-up time.
- http://stackoverflow.com/questions/198577/real-differences-between-java-server-and-java-client
- The Client VM compiler does not try to execute many of the more complex optimizations performed by the compiler in the Server VM, but in exchange, it requires less time to analyze and compile a piece of code. This means the Client VM can start up faster and requires a smaller memory footprint.
- The Server VM contains an advanced adaptive compiler that supports many of the same types of optimizations performed by optimizing C++ compilers, as well as some optimizations that cannot be done by traditional compilers, such as aggressive inlining across virtual method invocations. This is a competitive and performance advantage over static compilers. Adaptive optimization technology is very flexible in its approach, and typically outperforms even advanced static analysis and compilation techniques.
- http://forums.sun.com/thread.jspa?threadID=726793
- The one that is chosen by default depends on Java version, the OS, the number of processors and other such things.
- http://java.sun.com/javase/6/webnotes/install/jre/README
- On Microsoft Windows platforms, the JDK includes both the Java HotSpot(TM) Server VM and Java HotSpot Client VM.
- However, the Java SE Runtime Environment for Microsoft Windows platforms includes only the Java HotSpot Client VM. Those wishing to use the Java HotSpot Server VM with the Java SE Runtime Environment may copy the JDK's jre\bin\server folder to a bin\server directory in the Java SE Runtime Environment.
- http://forums.sun.com/thread.jspa?threadID=567821&forumID=17
- In your "Documents and Settings\username\Application Data" folder you'll probably find a folder named "Sun".
- http://www.javakb.com/Uwe/Forum.aspx/java-setup/6130/The-Java-Runtime-Environment-cannot-be-loaded-from-bin-server
HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Runtime Environment\1.6\RuntimeLib
C:\Program Files\Java\jdk1.5.0\jre\lib\i386\jvm.cfg
-client KNOWN