7
votes
5answers
126 views
Can Sun JVM handle gigantic heap sizes without problems, and how?
I have heard several people claiming that you can not scale the JVM heap size up. I've heard claims of the practical limit being 4 gigabytes (I heard an IBM consultant say that), 1 …
25
votes
13answers
830 views
+100
In the 13 years that Java has been around, are there any specific examples of backward incompatibilities?
It has been thirteen years between the initial public release of Java 1.0 (1996) and the current stable release 1.6.0_16 (2009).
During those thirteen years the following notable …
3
votes
2answers
49 views
Viewing large XML files in eclipse?
I'm working on a project involving some large XML files (from 50MB to over 1GB) and it would be nice if I could view them in eclipse (simple text view is fine) without Java running …
0
votes
1answer
15 views
GWT + OSX = SWT issues
I'm new to GWT development and I'm putting myself through the paces with Google's tutorial but I'm getting errors:
java[10574:80f] [Java CocoaComponent compatibility mode]: Ena …
6
votes
6answers
115 views
Killer facility or scenario that would make another JVM a better choice than the Sun JVM?
For Java SE there are several JVM's available for running in production on x86:
IBM J9
Oracle JRockit - http://www.oracle.com/technology/products/jrockit/index.html
Apache Harmo …
1
vote
0answers
16 views
Performance of IcedTea 6 vs Sun’s HotSpot 6
How does IcedTea 6's performance stand up against Sun's own HotSpot on linux systems? I tried searching Google but Phoronix's test is the best I got, which is almost a year old now …
5
votes
3answers
108 views
Do Linux JVMs actually implement Thread priorities?
Wrote a quick Java proggy to spawn 10 threads with each priority and calculate pi (4*atan(1) method) with BigDecimals 500,000 times each, join on each thread and report the elapsed …
0
votes
4answers
57 views
Benefits of JVM atop an OS VM?
I see many deployments where IT groups run effectively nothing but a JVM application stack inside a VM (vmware, &c) instance.
I guess I consider the JVM to be a formal VM: wh …
1
vote
1answer
60 views
How KVM (Kilo Virtual Machine) different from JVM(Java Virtual Machine) ?
I have basic idea on Kilo Virtual Machine on Mobiles , I have clear idea of how JVM works class loaders , Executable Engine,Method Area etc .
Technically how KVM differs from …
0
votes
1answer
34 views
Retrieve main class/jar file name passed to the JVM
As a C++ app, is there a way to query a java process(java.exe/javaw.exe) to retrieve the main class or jar file name that was passed to the JVM?
I want the same result as when you …
10
votes
5answers
194 views
Why does the Sun JVM continue to consume ever more RSS memory even when the heap, etc sizes are stable?
Over the past year I've made huge improvements in my application's Java heap usage--a solid 66% reduction. In pursuit of that, I've been monitoring various metrics, such as Java h …
1
vote
1answer
54 views
Where is the signing for signed integral types stored? (In Java)
The Java data type byte for example holds data from -128 to 127 in a single byte on storage.
To enable to distingush between - 1 to -128 from 0 to 127 would require extra data whi …
4
votes
5answers
122 views
how to choose the jvm heap size ?
Hi,
What i usually do concerning the jvm heap size is setting the max value really high to avoid the infamous OutOfMemoryException.
However, this strategy (or lack of strategy) …
0
votes
4answers
93 views
Would a multithreaded Java application exploit a multi-core machine very well?
Hi,
Say I have a dual-core windows laptop and I run a multithreaded application on it. Does the JVM run only on one core or do the JVM and the OS somehow communicate to split thre …
3
votes
4answers
83 views
Is there such as role as a Java Runtime Administrator?
There are Database Administrators (DBA) and Unix|Windows System Administrators. There are likely soon to be Cloud Administrators.
There are hordes of "administrators" who are tas …
