“java -server”和“java -client”之间有什么实际的区别吗?
我在孙的网站上只能找到一个模糊的
-服务器启动较慢,但应该运行得更快。
真正的区别是什么?(目前使用JDK 1.6.0_07。)
“java -server”和“java -client”之间有什么实际的区别吗?
我在孙的网站上只能找到一个模糊的
-服务器启动较慢,但应该运行得更快。
真正的区别是什么?(目前使用JDK 1.6.0_07。)
当前回答
client和server系统是不同的二进制文件。它们本质上是连接到同一个运行时系统的两个不同的编译器(jit)。客户端系统最适合需要快速启动时间或占用空间小的应用程序,服务器系统最适合对整体性能最重要的应用程序。一般来说,客户端系统更适合交互式应用程序,如gui
我们在两个开关上运行以下代码:
package com.blogspot.sdoulger;
public class LoopTest {
public LoopTest() {
super();
}
public static void main(String[] args) {
long start = System.currentTimeMillis();
spendTime();
long end = System.currentTimeMillis();
System.out.println("Time spent: "+ (end-start));
LoopTest loopTest = new LoopTest();
}
private static void spendTime() {
for (int i =500000000;i>0;i--) {
}
}
}
注意:代码只编译过一次!这两个运行中的类是相同的!
客户端: java.exe -client -classpath C:\mywork\classes com.blogspot. sdoulder . looptest 花费时间:766
-服务器: java.exe -server -classpath C:\mywork\classes com.blogspot. sdoulder . looptest 时间:0
似乎更积极的优化服务器系统,删除循环,因为它知道它不执行任何操作!
参考
其他回答
IIRC服务器虚拟机在启动时做了更多的热点优化,所以它运行得更快,但启动时间稍长,占用更多内存。客户端VM推迟了大部分优化,以允许更快的启动。
编辑补充:这里有一些来自Sun的信息,不是很具体,但会给你一些想法。
当从1.4版本迁移到1.7版本(“1.7.0_55”)时。我们在这里观察到的是,在客户端和服务器模式下,分配给heapsize|permsize|ThreadStackSize参数的默认值没有这种差异。
顺便说一下,(http://www.oracle.com/technetwork/java/ergo5-140223.html)。这是从上面的链接中截取的片段。
initial heap size of 1/64 of physical memory up to 1Gbyte
maximum heap size of ¼ of physical memory up to 1Gbyte
1.7版本的ThreadStackSize更高,而在开放JDK论坛上,有讨论指出1.7版本的帧大小略高。 人们相信,在运行时可以根据应用程序的行为来度量真正的差异
client和server系统是不同的二进制文件。它们本质上是连接到同一个运行时系统的两个不同的编译器(jit)。客户端系统最适合需要快速启动时间或占用空间小的应用程序,服务器系统最适合对整体性能最重要的应用程序。一般来说,客户端系统更适合交互式应用程序,如gui
我们在两个开关上运行以下代码:
package com.blogspot.sdoulger;
public class LoopTest {
public LoopTest() {
super();
}
public static void main(String[] args) {
long start = System.currentTimeMillis();
spendTime();
long end = System.currentTimeMillis();
System.out.println("Time spent: "+ (end-start));
LoopTest loopTest = new LoopTest();
}
private static void spendTime() {
for (int i =500000000;i>0;i--) {
}
}
}
注意:代码只编译过一次!这两个运行中的类是相同的!
客户端: java.exe -client -classpath C:\mywork\classes com.blogspot. sdoulder . looptest 花费时间:766
-服务器: java.exe -server -classpath C:\mywork\classes com.blogspot. sdoulder . looptest 时间:0
似乎更积极的优化服务器系统,删除循环,因为它知道它不执行任何操作!
参考
这实际上链接到HotSpot和默认选项值(Java HotSpot VM Options),这些值在客户端和服务器配置之间是不同的。
从白皮书的第2章(Java HotSpot性能引擎架构):
The JDK includes two flavors of the VM -- a client-side offering, and a VM tuned for server applications. These two solutions share the Java HotSpot runtime environment code base, but use different compilers that are suited to the distinctly unique performance characteristics of clients and servers. These differences include the compilation inlining policy and heap defaults. Although the Server and the Client VMs are similar, the Server VM has been specially tuned to maximize peak operating speed. It is intended for executing long-running server applications, which need the fastest possible operating speed more than a fast start-up time or smaller runtime memory footprint. The Client VM compiler serves as an upgrade for both the Classic VM and the just-in-time (JIT) compilers used by previous versions of the JDK. The Client VM offers improved run time performance for applications and applets. The Java HotSpot Client VM has been specially tuned to reduce application start-up time and memory footprint, making it particularly well suited for client environments. In general, the client system is better for GUIs.
所以真正的区别还在于编译器层面:
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.
注意:jdk6更新10的发布(参见更新发布说明:1.6.0_10中的更改)试图改善启动时间,但原因与热点选项不同,它以不同的方式打包在一个小得多的内核中。
G. Demecki在评论中指出,在64位版本的JDK中,-client选项多年来一直被忽略。 参见Windows java命令:
-client
选择Java HotSpot Client虚拟机。 支持64位的JDK目前忽略了这个选项,而是使用Java Hotspot Server VM。
2022: Holger在评论中引用了JavaSE6 /服务器类机器检测,并补充道:
只有在32位的Windows系统上,-client才会被无条件地选择。 其他系统检查机器是否为“服务器类”,当至少有2个核心和至少2GiB的内存时,这是满足的。 这就解释了为什么在相当长的一段时间内几乎所有东西都使用-server。即使是你能找到的最便宜的电脑,也是“服务器级”机器。Sun/Oracle 64版本甚至没有附带客户端JVM。
我刚刚注意到的一个不同之处在于,在“客户端”模式下,JVM似乎会将一些未使用的内存归还给操作系统,而在“服务器”模式下,一旦JVM获取了内存,它就不会将其归还。这就是它在Solaris和Java6上的显示方式(使用prstat -Z查看分配给进程的内存数量)。